body {
    height: 100vh;
    background: linear-gradient(135deg, #0d6efd, #6c757d);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Roboto', sans-serif;
}

.login-card {
    background: rgb(255 255 255);
    border-radius: 1rem;
    padding: 2rem;
    width: 100%;
    max-width: 350px;
    box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.15);
    animation: fadeInUp 0.6s ease;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.login-logo img {
    max-height: 90px;
}

.form-control {
    border-radius: 0.75rem;
    font-size: 15px;
    padding-left: 2.5rem;
}

.form-icon {
    position: absolute;
    top: 50%;
    left: 12px;
    transform: translateY(-50%);
    color: #6c757d;
    font-size: 16px;
    z-index: 9;
}

.input-group {
    position: relative;
}

.toggle-password {
    position: absolute;
    top: 50%;
    right: 12px;
    transform: translateY(-50%);
    color: #6c757d;
    cursor: pointer;
    font-size: 16px;
    z-index: 9;
}

.btn-login {
    border-radius: 0.75rem;
    padding: 0.75rem;
    font-size: 16px;
    font-weight: 500;
}

.login-footer {
    font-size: 0.85rem;
    margin-top: 1rem;
    color: #6c757d;
}