/* Global Styles */
body {
    font-family: 'Montserrat', sans-serif;
    background-color: #f4f4f9;
    margin: 0;
    padding: 0;
}

h1, h2, h3, p {
    margin: 0;
    padding: 0;
}

.container {
    width: 80%;
    margin: 0 auto;
    padding: 20px;
}

/* Header and Main */
header {
    background-color: #d50000; /* Match the red color from your site */
    color: white;
    padding: 20px 0;
    text-align: center;
}

header h1 {
    font-size: 36px;
    font-weight: bold;
}

/* Password Form */
.password-form {
    background: #ffffff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
    max-width: 400px;
    margin: 0 auto;
    display: block;
}

.password-form input {
    width: 80%;
    padding: 10px;
    margin-bottom: 20px;
    border-radius: 5px;
    border: 1px solid #ddd;
    font-size: 16px;
}

.password-form button {
    background-color: #0d1259;
    color: white;
    padding: 10px 20px;
    font-size: 16px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.password-form button:hover {
    background-color: #b50000;
}

#error-message {
    font-size: 14px;
    color: red;
    display: none;
}

/* Email Form */
#email-form {
    background: #ffffff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    max-width: 500px;
    margin: 20px auto;
    display: none;
}

#email-form h2 {
    text-align: center;
    font-size: 28px;
    color: #333;
    margin-bottom: 20px;
}

#email-form label {
    font-size: 18px;
    margin-bottom: 10px;
    display: block;
    color: #333;
}

#email-form input,
#email-form textarea {
    width: 100%;
    padding: 15px;
    margin: 10px 0;
    border-radius: 8px;
    border: 1px solid #ddd;
    font-size: 16px;
    box-sizing: border-box;
}

#email-form button {
    background-color: #0d1259;
    color: white;
    padding: 12px 20px;
    font-size: 16px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    width: 100%;
    transition: background-color 0.3s ease;
}

#email-form button:hover {
    background-color: #b50000;
}

/* Success/Error Messages */
#sendStatus {
    color: green;
    text-align: center;
    font-size: 18px;
    display: none;
}

#sendError {
    color: red;
    text-align: center;
    font-size: 18px;
    display: none;
}

/* General Form Layout */
form {
    display: flex;
    flex-direction: column;
}

form input,
form textarea,
form button {
    margin-bottom: 15px;
}

form button {
    width: auto;
    align-self: center;
}

/* Mobile Styling */
@media (max-width: 768px) {
    .container {
        width: 90%;
    }

    header h1 {
        font-size: 28px;
    }

    #email-form {
        width: 100%;
    }

    .password-form {
        width: 100%;
    }
}
