body {
    background: linear-gradient(135deg, #7d9ca8ff 0%, rgb(173, 210, 250) 100%);
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: 'Segoe UI', sans-serif;
}

.login-card {
    background: #fff;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
    animation: fadeIn 0.8s ease-in-out;
}

.login-card .logo {
    width: 100px;
    height: 100px;
    object-fit: cover;
    background: #f8f9fa;
    padding: 10px;
}

.form-control {
    border-radius: 50px;
    padding-left: 40px;
}

.input-icon {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #6c757d;
}

.position-relative {
    position: relative;
}

.btn-primary {
    border-radius: 50px;
    font-weight: 500;
}

.reset_pass {
    display: block;
    margin-top: 10px;
    font-size: 0.9rem;
}

.toggle-password {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    border: none;
    background: none;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}