* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.container {
    width: 100%;
    min-height: 100vh;
    height: 100%;
    /* background-image: url(./bg.jpg); */
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: center;
}

.form-area {
    background: #fff;
    border-radius: 5px;
}

.btn {
    background: rgb(255, 1, 229);
    background: linear-gradient(120deg, rgba(255, 1, 229, 1) 0%, rgba(118, 0, 195, 1) 50%, rgba(29, 17, 85, 1) 100%);
    border: none;
    text-transform: uppercase;
    border-radius: 4px;
    padding: 12px 16px;
    color: white;
    font-weight: 600;
}

.btn:hover {
    background: linear-gradient(240deg, rgba(255, 1, 229, 1) 0%, rgba(118, 0, 195, 1) 50%, rgba(29, 17, 85, 1) 100%);
}



.forgot {
    align-self: self-end;
    margin-top: 2px;
    text-decoration: none;
    color: #1d1155;
}

.forgot:hover {
    color: #7600C3;
}


body {
    overflow: hidden;
}

.trail {
    position: absolute;
    z-index: -1;
    height: 600px;
    top: 0;
}


.signin-content {
    display: flex;
    flex-wrap: wrap;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
}

.main_bg {
    background: #fff;
    padding: 30px;
    border-radius: 7px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
}


@media (min-width: 992px) {
    .site_logo img {
        max-width: 250px;
        width: 100%;
    }
    
}



.site_logo h4 {
    text-align: center;
    font-size: 28px;
    padding: 8px 0;
    text-transform: uppercase;
}

.signin-image,
.signin-form {
    flex: 1 1 50%;
    padding: 40px 40px;
}

.signin-image {
    background-color: #f7f7f7;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.signin-image img {
    max-width: 350px;
    height: auto;
    width: 100%;
    margin-bottom: 20px;
}

.signup-image-link {
    color: #6a11cb;
    text-decoration: none;
    font-weight: bold;
}

.signup-image-link:hover {
    text-decoration: underline;
}

.form-title {
    font-size: 28px;
    margin-bottom: 20px;
    color: #333;
    font-weight: 700;
    text-align: center;
}

.form-group {
    position: relative;
    margin-bottom: 25px;
    overflow: hidden;
}

label {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    color: #222;
}



input {
    width: 100%;
    display: block;
    border: none;
    border-bottom: 1px solid #999;
    padding: 6px 30px;
    font-family: 'Poppins', sans-serif;
    box-sizing: border-box;
}

input:focus {
    border-bottom: 1px solid #999;
    outline: none;
}

.remember-me-container {
    display: flex;
    align-items: center;
    margin: 15px 0;
    cursor: pointer;
}

.remember-me-checkbox {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    width: 18px;
    height: 18px;
    border: 2px solid #ccc;
    border-radius: 4px;
    outline: none;
    cursor: pointer;
    margin-right: 10px;
    position: relative;
    transition: all 0.2s ease;
}

.remember-me-checkbox:checked {
    background-color: #4a6bff;
    border-color: #4a6bff;
}

.remember-me-checkbox:checked::after {
    content: "✓";
    position: absolute;
    color: white;
    font-size: 12px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.remember-me-label {
    font-size: 14px;
    color: #333;
    user-select: none;
    cursor: pointer;
    margin-left: 25px;
}

.remember-me-checkbox:hover {
    border-color: #4a6bff;
}

.form-button {
    text-align: center;
}

.form-submit {
    padding: 10px 20px;
    background: linear-gradient(120deg, #6a11cb, #2575fc);
    border: none;
    color: #fff;
    font-weight: bold;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.form-submit:hover {
    background: linear-gradient(120deg, #2575fc, #6a11cb);
}

.social-login {
    text-align: center;
    margin-top: 20px;
}

.social-label {
    display: block;
    margin-bottom: 10px;
    font-weight: 600;
    color: #555;
}

.socials {
    display: flex;
    justify-content: center;
    list-style: none;
    gap: 10px;
}

.socials li a {
    display: inline-block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    border-radius: 50%;
    background-color: #eee;
    color: #333;
    transition: background-color 0.3s;
}

.socials li a:hover {
    background-color: #6a11cb;
    color: #fff;
}

@media screen and (max-width: 768px) {
    .signin-content {
        flex-direction: column;
    }

    .signin-image,
    .signin-form {
        flex: 1 1 100%;
        padding: 30px 20px;
    }
    
    .signin-image{
        display:none;
    }
}