body {
    background-image: url(../assets/bg-login.png);
    background-size: cover;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
    margin: 0;
    padding: 20px;
}

.login-card {
    width: 100%;
    max-width: 400px;
    padding: 40px;
    background-color: #fff;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    text-align: center;
}

.login-title {
    font-weight: 600;
    font-size: 1.6rem;
    margin-bottom: 25px;
}

.login-title .logo {
    width: 80%;
}

.footer {
    text-align: center;
    margin-top: 30px;
    font-size: 0.85rem;
    color: #888;
}

.footer a {
    color: #555;
    text-decoration: none;
}

@media (max-width: 576px) {
    .login-card {
        padding: 30px 20px;
    }
}

/* Selection Card */
.selection-card {
    max-width: 420px;
    width: 100%;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.1);
    background: #fff;
}

.option-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 16px;
    border-radius: 8px;
    text-decoration: none;
    color: #212529;
    transition: background-color 0.2s, transform 0.1s;
}

.option-link:hover {
    background-color: #e9ecef;
}

.option-icon,
.img-icon {
    font-size: 24px;
    margin-right: 16px;
    width: 32px;
    color: var(--color-primary);
    text-align: center;
}

.option-text {
    flex-grow: 1;
    font-weight: 500;
}