body {
    background-image: url('../images/background.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    font-family: 'Poppins', sans-serif;
    color: #333;
}

.container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

.login-box, .content-box {
    background: rgba(255, 255, 255, 0.9);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    max-width: 400px;
    width: 100%;
    text-align: center;
}

.logo {
    max-width: 150px;
    margin-bottom: 1rem;
}

.btn-primary {
    background-color: #e74c3c; /* Vibrant red */
    border-color: #e74c3c;
}

.btn-primary:hover {
    background-color: #c0392b;
    border-color: #c0392b;
}

.btn-secondary {
    background-color: #3498db; /* Vibrant blue */
    border-color: #3498db;
}

.btn-secondary:hover {
    background-color: #2980b9;
    border-color: #2980b9;
}

h2 {
    color: #2c3e50; /* Dark blue for headings */
}

a {
    color: #e67e22; /* Vibrant orange for links */
}

a:hover {
    color: #d35400;
}
