
body {
    background-image: url('../images/hills_bg.png');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    background-attachment: fixed;
}

.card-container {
    text-align: center;
    margin-top: 60px;
    font-family: Arial, sans-serif;
}

.cards {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.login-card {
    min-height: 360px;
    width: 280px;
    padding: 20px;
    text-decoration: none;
    color: black;
    border-radius: 12px;
    background: #f5f5f5;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
    transition: transform 0.2s, box-shadow 0.2s;
    text-align: center;
}

.login-card img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    border-radius: 8px;
}

.login-card h2 {
    margin-top: 15px;
    font-size: 22px;
}

.login-card p {
    font-size: 14px;
    margin-top: 10px;
}

.login-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0,0,0,0.25);
}