/* Reset some basic styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    background-color: #f4f4f4;
}

.form-body{
    justify-content: center;
    align-items: center;
    background: #f4f6f8;
    color: #333;
}

h1 {
    font-size: 1.8em;
    margin-bottom: 1em;
    color: #333;
}
label {
    display: block;
    text-align: left;
    font-weight: bold;
    margin-bottom: 0.5em;
    font-size: 0.9em;
    color: #666;
}

input[type="text"],
input[type="email"],
textarea,
input[type="file"],
button {
    width: 100%;
    margin-bottom: 1em;
    padding: 0.9em;
    font-size: 1em;
    border-radius: 5px;
    border: 1px solid #ddd;
}

textarea {
    height: 8em;
    resize: vertical;
}

/* Header styling */
header {
    background-color: #f4f4f4;
    padding: 10px 20px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid #ddd;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.logo {
    height: 50px;
}

.header-text {
    font-size: 1.2rem;
    color: #4A4A4A;
    text-decoration: none;
}

.header-text:hover {
    color: #1a1a1a;
}

/* Centered main content */
.main-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 20px;
}

.main-content h1 {
    font-size: 2rem;
    color: #4A4A4A;
    margin-bottom: 10px;
}

.main-content p {
    font-size: 1rem;
    color: #6B6B6B;
    margin-bottom: 20px;
}

.login-button, .btn-primary, .btn-secondary {
    display: inline-block;
    padding: 10px 20px;
    font-size: 1rem;
    color: #ffffff;
    background-color: #28a745;
    border: none;
    border-radius: 5px;
    text-decoration: none;
    transition: background-color 0.3s ease;
    margin-top: 20px;
}

.login-button:hover, .btn-primary:hover {
    background-color: #218838;
}

/* Footer styling */
footer {
    background-color: #f4f4f4;
    padding: 10px;
    text-align: center;
    border-top: 1px solid #ddd;
    font-size: 0.9rem;
    color: #6B6B6B;
}

/* Prerequisites container */
.prerequisites {
    background-color: #fff4e5; /* Light orange background */
    border: 2px solid #ffa500; /* Orange border */
    border-radius: 8px; /* Rounded corners */
    padding: 20px;
    margin-top: 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Subtle shadow for emphasis */
    max-width: 600px; /* Limit width */
    margin-left: auto; /* Center the box */
    margin-right: auto;
}

/* Prerequisites heading */
.prerequisites h3 {
    font-size: 1.5rem;
    font-weight: bold;
    color: #d35400; /* Dark orange */
    margin-bottom: 10px;
}

/* Prerequisites text */
.prerequisites p {
    font-size: 1rem;
    color: #333; /* Neutral text color */
    line-height: 1.5;
}

/* Highlighted text (@acuitysso.com) */
.highlighted {
    color: #ff0000; /* Bright red */
    font-weight: bold;
    text-decoration: underline;
}

.form-container {
    width: 90%;
    max-width: 450px;
    background: #fff;
    padding: 2em;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
}

/* Center the login form container */
.login-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    flex-grow: 1;
}

/* Title style */
.login-title {
    font-size: 2rem;
    color: #4A4A4A;
    margin-bottom: 20px;
}

/* Message style */
.login-message {
    color: #6A6A6A;
    margin-bottom: 20px;
}

/* Form style */
.login-form {
    margin-top: 15px;
}

/* Button style */
.btn-login, button {
    background-color: #28a745; /* Green button */
    color: white;
    border: none;
    padding: 10px 20px;
    font-size: 1rem;
    cursor: pointer;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.btn-login:hover, button:hover{
    background-color: #218838;
}

input::placeholder, textarea::placeholder {
    color: #aaa;
}

input[type="file"] {
    padding: 0.5em;
}

.success-page {
    text-align: center;
    margin-top: 50px;
}
.success-page h1 {
    font-size: 2.5rem;
    color: #28a745;
}
.success-message {
    font-size: 1.2rem;
    margin: 20px 0;
    color: #555;
}

.btn-secondary {
    background-color: #6c757d;
}
.btn-secondary:hover {
    background-color: #5a6268;
}


.separator {
    margin: 0 10px;
    color: #888;
    font-size: 1.5em;
}

.sign-out-link {
    font-size: 1.1em;
    color: #db4646;
    text-decoration: none;
}

.sign-out-link:hover {
    color: #9c0000;
}
