/* src/app/admin/auth.module.css */

.container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 80vh;
    background-color: #f4f4f4;
    padding: 2rem;
}

.formWrapper {
    background: #2d2d2d; /* Changed from white to greyish black */
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2); /* Adjusted shadow for dark bg */
    width: 100%;
    max-width: 400px;
    text-align: center;
}

.formWrapper h1 {
    margin-bottom: 1.5rem;
    color: #f5f5f5; /* Changed to light grey for contrast */
    font-size: 1.8rem;
}

.inputGroup {
    margin-bottom: 1rem;
    text-align: left;
}

.inputGroup label {
    display: block;
    margin-bottom: 0.5rem;
    color: #cccccc; /* Changed to a lighter grey */
    font-weight: bold;
}

.inputGroup input {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #555; /* Darker border */
    border-radius: 4px;
    font-size: 1rem;
    background-color: #3d3d3d; /* Darker input background */
    color: #ffffff; /* White text for input */
}

.submitButton {
    width: 100%;
    padding: 0.9rem;
    border: none;
    border-radius: 4px;
    background-color: #FEB500;
    color: #222222;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin-top: 1rem;
}

.submitButton:hover {
    background-color: #f8b400;
}

.error {
    color: #ff6b6b; /* Brighter red for visibility on dark background */
    margin-bottom: 1rem;
}

.success {
    color: #6bff9b; /* Brighter green */
    margin-bottom: 1rem;
}

.linkText {
    margin-top: 1.5rem;
    color: #bbbbbb; /* Lighter grey for link text */
}

.linkText a {
    color: #FEB500; /* Use the theme's highlight color */
    text-decoration: none;
    font-weight: bold;
}

.linkText a:hover {
    text-decoration: underline;
}