.login-container {
    display: flex;
    height: 100vh;
    overflow: hidden;
    background: #fff;
}

/* Left side (image) */
.login-left {
    flex: 1;
    background: url('../assets/images/bg-login.JPG') no-repeat center center;
    background-size: cover;
    position: relative;
}

    .login-left .overlay {
        position: absolute;
        bottom: 50px;
        left: 50px;
    }

.logo-bottom {
    width: 150px;
    opacity: 0.9;
}

/* Right side (form) */
.login-right {
    flex: 0 0 480px; 
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #fff;
    padding: 3rem 2rem; 
}

.form-wrapper {
    width: 100%;
    max-width: 380px;
}

.logo-top {
    width: 160px; 
    margin-bottom: 2.5rem;
}

.input-icon {
    position: absolute;
    left: 16px; 
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.3rem;
    color: #f08b2c; 
}

.form-group {
    position: relative;
    margin-bottom: 1.5rem; 
}

.form-control {
    border-radius: 8px;
    height: 52px;
    font-size: 0.95rem;
    border: 1px solid #e0e0e0; 
    background-color: #f9f9f9; 
}

    .form-control:focus {
        border-color: #f08b2c;
        box-shadow: none;
        background-color: #fff;
    }

.btn-login {
    background-color: #f08b2c;
    border: none;
    color: #fff;
    padding: 14px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem; 
    letter-spacing: 0.5px; 
    transition: all 0.3s ease;
    margin-top: 1.5rem; 
}

.btn-forgot {
    background-color: #f08b2c;
    border: none;
    color: #fff;
    padding: 14px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    margin-top: 1.5rem;
}

    .btn-login:hover {
        background-color: #db7a1d;
    }

.text-center.my-3 {
    margin: 1.5rem 0;
}

    .text-center.my-3 span {
        font-size: 0.85rem; 
        color: #999;
    }

.btn-outline-dark {
    padding: 12px;
    border-radius: 8px;
    border-color: #ddd;
    font-size: 0.95rem;
    transition: all 0.3s ease; 
}

    .btn-outline-dark:hover {
        background-color: #333; 
        border-color: #333;
        color: #fff; 
        transform: translateY(-2px); 
        box-shadow: 0 4px 12px rgba(0,0,0,0.15); 
    }

    btn-outline-dark:hover .mdi-microsoft {
    color: #fff; 
    }
.forgot-link {
    color: #666;
    font-size: 0.9rem;
    text-decoration: none;
}

    .forgot-link span {
        color: #f08b2c;
        font-weight: 600;
    }

    .forgot-link:hover {
        color: #333;
    }

        .forgot-link:hover span {
            color: #db7a1d;
        }

@media (max-width: 768px) {
    .login-container {
        flex-direction: column;
    }

    .login-left {
        flex: 0 0 200px;
    }

    .login-right {
        flex: 1;
    }
}
.forgot-password-container {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f5f5f5;
}

.forgot-background-blur {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../assets/images/bg-login.JPG') no-repeat center center;
    background-size: cover;
    z-index: 1;
}

.forgot-content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 450px;
    padding: 0 20px;
}

.forgot-logo {
    width: 160px;
    height: 70px;
    margin: 0 auto 30px;
    background: url('../assets/images/logo-alamtri.png') no-repeat center center;
    background-size: contain;
}

.forgot-content .card {
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.95);
    border: none;
}

.forgot-content .input-icon {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.2rem;
    color: #f08b2c;
}

/* Form control */
.forgot-content .form-control {
    border-radius: 8px;
    height: 52px;
    border: 1px solid #e0e0e0;
    background-color: #f9f9f9;
}

    .forgot-content .form-control:focus {
        border-color: #f08b2c;
        box-shadow: none;
        background-color: #fff;
    }

/* Button */
.btn-forgot {
    background-color: #f08b2c;
    border: none;
    color: #fff;
    padding: 14px;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}

    .btn-forgot:hover {
        background-color: #db7a1d;
        color: #fff;
    }

/* Link */
.forgot-link {
    color: #f08b2c;
    text-decoration: none;
    font-size: 0.95rem;
}

    .forgot-link:hover {
        color: #db7a1d;
    }

/* Responsive */
@media (max-width: 768px) {
    .forgot-logo {
        width: 140px;
        height: 60px;
        margin-bottom: 20px;
    }

    .forgot-content .card-body {
        padding: 2rem !important;
    }
}