﻿/* ===========================================
   🌟 FULL-SCREEN MODERN LOGIN PAGE
   =========================================== */
body {
    margin: 0;
    padding: 0;
    font-family: "Poppins", sans-serif;
    background: linear-gradient(135deg, #fffaf5, #f7f9fb);
    min-height: 50vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* ===== Login Page Wrapper ===== */
.login-page {
    width: 100%;
    min-height: 80vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px 20px;
}

/* ===== Centered Wrapper ===== */
.login-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

/* ===== Login Card ===== */
.login-card {
    width: 1000px;
    height: 500px;
    max-width: 420px;
    background: #ffffff;
    backdrop-filter: blur(12px);
    border-radius: 22px;
    padding: 0px 70px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    text-align: center;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    animation: fadeIn 0.8s ease-in-out;
}

    .login-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 22px 50px rgba(121, 146, 151, 0.25);
    }

/* ===== Logo ===== */
.login-logo {
    width: 130px;
    height: 130px;
    margin-bottom: 40px;
    border-radius: 50%;
   
    background-size: cover;
    background-position: center;
    
   
}

/* ===== Title ===== */
.login-title {
    font-size: 32px;
    font-weight: 700;
    color: #237043;
    text-transform: uppercase;
    margin-bottom: 45px;
    margin-top: -90px;
    position: relative;
}

  
/* ===== Form ===== */
form {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* ===== Input Fields ===== */
.form-control {
    width: 1000px;
    max-width: 400px;
    padding: 14px 16px;
    border: 1px solid #d4d9e2;
    border-radius: 12px;
    background: #cbe4ed;
    color: #333;
    font-size: 15px;
    transition: all 0.3s ease;
    margin-bottom: 25px;
    box-sizing: border-box;
}

    .form-control:focus {
        border-color: #d4d9e2;
    
        outline: none;
    }


/* ===== Placeholder ===== */
::placeholder {
    color: #aaa;
    opacity: 1;
}

/* ===== Login Button ===== */
.login-btn {
    width: 45%;
    max-width: 200px;
    padding: 12px 0;
    background: #237043d1;
    color: #fff;
    font-weight: 600;
    font-size: 16px;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
}

    .login-btn:hover {
        background: #237043d1;
        transform: translateY(-2px);
    }

/* ===== Error Message ===== */
.text-danger {
    color: #ff4f4f !important;
    font-weight: 600;
    margin-top: 15px;
}

/* ===== Animation ===== */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(25px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===== Responsive Design ===== */
@media (max-width: 768px) {
    .login-card {
        width: 95%;
        
    }

    .login-logo {
        width: 110px;
        height: 110px;
        margin-bottom: 25px;
    }

    .login-title {
        font-size: 26px;
        margin-bottom: 35px;
    }

    .form-control {
        max-width: 100%;
    }

    .login-btn {
        width: 60%;
        font-size: 15px;
    }
}





