/* 
  The body styling is now handled by global.css and homepage.css,
  which are included in login.html for a consistent look.
  This file now only styles the specific login prompt elements.
*/

.hero-section {
    background-image: url('../../resources/volunteer_images.jpg');
    align-items: center;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    box-sizing: border-box;
    justify-content: center;
}

.hero-text {
    padding: 2rem 3rem;
}

.info-box {
    background-color: rgba(0, 0, 0, 0.6);
    padding: 1.5rem;
    border-radius: 10px;
    color: white;
}

.login-container {
    /* The dark background is provided by the 'info-box' class from homepage.css */
    /* This ensures visual consistency with the homepage. */
    padding: 2rem 3rem;
    text-align: center;
    color: white; /* Make text white to stand out on the dark background */
}

.login-container h1 {
    font-size: 2.5rem; /* Make title larger */
    margin-bottom: 1rem; /* Increase space below title */
}

.login-container p {
    font-size: 1.1rem;
    margin-bottom: 2rem; /* Increase space between text and button */
}

.login-button-large {
    display: inline-block; /* Ensure it behaves like a block for padding/margin */
    background-color: #5865F2; /* Discord blurple */
    color: white;
    padding: 1rem 2rem;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    font-size: 1.1rem;
    transition: background-color 0.3s;
}

.login-button-large:hover {
    background-color: #4752C4;
}

