/* General styles */
body {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    background-color: #121212; /* Dark background */
    color: #ffffff; /* Light text color for contrast */
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

/* Container for form */
form {
    background: #1e1e1e; /* Slightly lighter dark background */
    padding: 20px 40px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5); /* Darker shadow */
    width: 100%;
    max-width: 400px;
    text-align: center;
}

h1 {
    margin-bottom: 20px;
    font-size: 24px;
    color: #ff6f61; /* Vibrant orange color */
}

/* Input fields */
input[type="text"],
input[type="password"],
textarea,
select {
    width: calc(100% - 20px);
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #333; /* Darker border */
    border-radius: 5px;
    font-size: 16px;
    background-color: #2a2a2a; /* Dark input background */
    color: #ffffff; /* Light text color */
}

input[type="text"]:focus,
input[type="password"]:focus,
textarea:focus,
select:focus {
    border-color: #ff6f61; /* Orange border on focus */
}

/* Labels */
label {
    display: block;
    margin: 10px 0 5px;
    text-align: left;
    font-size: 14px;
    color: #cccccc; /* Light grey color */
}

/* File upload button */



/* Multiselect field */
select[multiple] {
    height: auto;
}

/* Submit button */
input[type="submit"] {
    background: #ff6f61; /* Vibrant orange background */
    color: #ffffff; /* Light text color */
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    transition: background 0.3s ease;
}

input[type="submit"]:hover {
    background: #e65c50; /* Slightly darker orange on hover */
}

/* Error message */
.message_flash {
    background: #3e2723; /* Dark red background */
    color: #ffccbc; /* Light red text */
    border: 1px solid #ff6f61; /* Orange border */
    padding: 10px;
    margin-bottom: 10px;
    border-radius: 5px;
}

/* Links */
a {
    color: #4fc3f7; /* Light blue color */
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* Already have an account */
p {
    margin-top: 20px;
    font-size: 14px;
    color: #cccccc; /* Light grey color */
}

@media (max-width: 600px) {
    form {
        padding: 20px;
    }

    h1 {
        font-size: 20px;
    }

    input[type="text"],
    input[type="password"],
    textarea,
    select {
        width: calc(100% - 16px);
    }

    input[type="submit"] {
        padding: 10px;
    }
}

