/* Enter Your CSS HERE  */


/* ===========================
   LOGIN PAGE STYLES
   =========================== */

/* Login Banner - same pattern as main_slider so header floats over it */
section.login-banner-sec {
    position: relative;
    background: #0a0a0a;
    height: 55vh;
    display: flex;
    align-items: flex-end;
    padding-bottom: 40px;
    overflow: hidden;
}

section.login-banner-sec::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    height: 100%; width: 100%;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a0a12 50%, #0a1a1a 100%);
    z-index: 0;
}

.login-banner-overlay {
    position: absolute;
    top: 0; left: 0;
    height: 100%; width: 100%;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ff457f' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    z-index: 0;
}

.login-banner-text {
    position: relative;
    z-index: 1;
}

.login-banner-text h1 {
    color: #4fb6b2;
    font-size: 65px;
    margin-bottom: 8px;
}

.login-banner-text p {
    color: #aaaaaa;
    font-size: 16px;
    margin-bottom: 0;
}

/* Login Forms Section */
.login-forms {
    padding: 70px 0px 80px;
    background: #0d0d0d;
    min-height: 60vh;
}

.log-in-wrap {
    background: #1a1a1a;
    border-radius: 20px;
    padding: 40px 35px;
    border: 1px solid #2a2a2a;
    box-shadow: 0px 0px 30px 0px rgba(255, 70, 127, 0.15);
    height: 100%;
}

.log-in-wrap.signup-bg {
    background: #1a1a1a;
    border: 1px solid #2a2a2a;
    box-shadow: 0px 0px 30px 0px rgba(79, 182, 178, 0.15);
}

.log-in-wrap h2 {
    font-family: 'bebasneue';
    font-size: 30px;
    color: #ff457f;
    margin-bottom: 25px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.log-in-wrap.signup-bg h2 {
    color: #4fb6b2;
}

/* Form Inputs */
.login-forms .form-group {
    margin-bottom: 18px;
}

.login-forms input[type="text"],
.login-forms input[type="email"],
.login-forms input[type="password"] {
    width: 100% !important;
    background: #111111;
    border: 1px solid #333333;
    border-radius: 8px;
    padding: 12px 18px;
    color: #ffffff;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    transition: all 0.3s ease;
}

.login-forms input[type="text"]:focus,
.login-forms input[type="email"]:focus,
.login-forms input[type="password"]:focus {
    border-color: #ff457f;
    background: #111111;
    box-shadow: 0 0 0 3px rgba(255, 70, 127, 0.15);
    color: #ffffff;
    outline: none;
}

.log-in-wrap.signup-bg input[type="text"]:focus,
.log-in-wrap.signup-bg input[type="email"]:focus,
.log-in-wrap.signup-bg input[type="password"]:focus {
    border-color: #4fb6b2;
    box-shadow: 0 0 0 3px rgba(79, 182, 178, 0.15);
}

.login-forms input::placeholder {
    color: #666666;
    font-size: 14px;
}

/* Password Toggle Icon */
.password-toggle-icon {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    color: #666;
    z-index: 10;
    font-size: 15px;
    transition: color 0.3s ease;
}

.password-toggle-icon:hover {
    color: #ff457f;
}

.log-in-wrap.signup-bg .password-toggle-icon:hover {
    color: #4fb6b2;
}

.form-group.position-relative {
    position: relative;
}

/* Login Button */
.login_btn {
    background: #ff457f;
    color: #ffffff;
    border: none;
    border-radius: 50px;
    padding: 12px 35px;
    font-family: 'montserrat-regular', sans-serif;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    width: 100%;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
    margin-top: 5px;
}

.login_btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0;
    background: #4fb6b2;
    z-index: -1;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.login_btn:hover {
    color: #ffffff;
}

.login_btn:hover::before {
    width: 100%;
}

.log-in-wrap.signup-bg .login_btn {
    background: #4fb6b2;
}

.log-in-wrap.signup-bg .login_btn::before {
    background: #ff457f;
}

/* Remember Me & Forgot Password */
.form_flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.form-check-input {
    background-color: #111111;
    border: 1px solid #444444;
    cursor: pointer;
}

.form-check-input:checked {
    background-color: #ff457f;
    border-color: #ff457f;
}

.form-check-label {
    color: #aaaaaa;
    font-size: 14px;
    cursor: pointer;
}

.forgot-pass a {
    color: #ff457f;
    font-size: 14px;
    font-family: 'Poppins', sans-serif;
    transition: color 0.3s ease;
}

.forgot-pass a:hover {
    color: #4fb6b2;
}

/* Signup Role Dropdown */
.login-forms select.form-control {
    background: #111111;
    border: 1px solid #333333;
    border-radius: 8px;
    padding: 12px 18px;
    color: #666666;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    width: 100%;
    cursor: pointer;
    transition: all 0.3s ease;
    -webkit-appearance: none;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23666' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
}

.login-forms select.form-control:focus {
    border-color: #4fb6b2;
    box-shadow: 0 0 0 3px rgba(79, 182, 178, 0.15);
    outline: none;
    color: #ffffff;
}

.login-forms select.form-control option {
    background: #1a1a1a;
    color: #ffffff;
}

/* Terms & Conditions */
.agree-text {
    font-size: 13px;
    color: #888888;
    margin-bottom: 15px;
    line-height: 22px;
}

.agree-text a.term-condition {
    color: #4fb6b2;
    text-decoration: underline;
}

.agree-text a.term-condition:hover {
    color: #ff457f;
}

/* Alert Messages */
.login-forms .alert-danger {
    background: rgba(255, 70, 127, 0.1);
    border: 1px solid rgba(255, 70, 127, 0.4);
    color: #ff6b9d;
    border-radius: 8px;
    padding: 12px 16px;
    margin-bottom: 20px;
    font-size: 14px;
}

.login-forms .alert-danger ul {
    margin-bottom: 0;
    padding-left: 15px;
    list-style: disc;
}

.login-forms .alert-success {
    background: rgba(79, 182, 178, 0.1);
    border: 1px solid rgba(79, 182, 178, 0.4);
    color: #4fb6b2;
    border-radius: 8px;
    padding: 12px 16px;
    margin-bottom: 20px;
    font-size: 14px;
}

/* Divider between columns on mobile */
@media (max-width: 767px) {
    section.login-banner-sec {
        height: 40vh;
        padding-bottom: 25px;
    }

    .login-banner-text h1 {
        font-size: 38px;
    }

    .login-forms {
        padding: 40px 0px 50px;
    }

    .log-in-wrap {
        padding: 30px 20px;
        margin-bottom: 30px;
    }

    .log-in-wrap h2 {
        font-size: 24px;
    }
}

/* Back to login link */
.back-to-login-link {
    color: #4fb6b2;
    font-size: 14px;
    font-family: 'Poppins', sans-serif;
    transition: color 0.3s ease;
    display: inline-block;
    margin-top: 5px;
}

.back-to-login-link:hover {
    color: #ff457f;
}

.back-to-login-link i {
    margin-right: 5px;
}
