@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700&display=swap');

body.login-page {
    margin: 0;
    padding: 0;
    height: 100vh;
    width: 100vw;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Outfit', sans-serif;
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 50%, #f8fafc 100%);
    overflow: hidden;
}

.login-container {
    width: 100%;
    max-width: 400px; 
    padding: 20px;
    display: flex;
    justify-content: center;
    animation: fadeInScale 0.5s ease-out;
}

.login-card {
    width: 100%;
    border-radius: 24px;
    padding: 35px 32px 45px 32px; 
    background: rgba(255, 255, 255, 0.75); 
    border: 1px solid rgba(255, 255, 255, 0.8);
    box-shadow: 
        0 20px 40px -10px rgba(0, 0, 0, 0.05), 
        0 1px 3px rgba(0, 0, 0, 0.02);
        
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
}

.login-header {
    text-align: center;
    margin-bottom: 24px;
}

.login-logo {
    width: 120px; 
    height: auto;
    filter: drop-shadow(0 4px 6px rgba(0,0,0,0.03));
    margin-bottom: 8px;
}

.login-header h1 {
    font-size: 28px; 
    font-weight: 700;
    color: #0f172a;
    margin: 0;
    letter-spacing: -0.5px;
}

.form-group {
    margin-bottom: 18px; 
}

.form-group label {
    display: block;
    font-size: 14px; 
    font-weight: 600;
    color: #475569;
    margin-bottom: 6px;
    margin-left: 2px;
}

.input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.input-wrapper svg {
    position: absolute;
    left: 14px;
    color: #94a3b8;
    width: 20px; 
    height: 20px;
    pointer-events: none;
    transition: color 0.3s ease;
}

.form-control {
    width: 100%;
    padding: 10px 14px 10px 42px;
    background: #f8fafc;
    border: 1.5px solid #e2e8f0;
    border-radius: 10px;
    font-size: 13.5px;
    color: #1e293b;
    transition: all 0.2s ease;
    font-family: inherit;
    box-sizing: border-box;
}

.form-control {
    width: 100%;
    padding: 11px 14px 11px 42px;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    font-size: 15px; 
    color: #1e293b;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    font-family: inherit;
    box-sizing: border-box;
}

.form-control:focus {
    outline: none;
    border-color: var(--primary);
    background: #ffffff;
    box-shadow: 0 0 0 4px rgba(99, 102, 241, 0.1); 
    transform: translateY(-1px);
}


.btn-login {
    width: 100%;
    padding: 12px;
    margin-top: 25px;
    background: var(--primary);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 16px; 
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.25);
}

.btn-login:hover {
    transform: translateY(-2px); 
    box-shadow: 0 6px 16px rgba(99, 102, 241, 0.35); 
    filter: brightness(1.05);
}

.btn-login:active {
    transform: translateY(0);
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.99) translateY(5px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}
