.container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 80vh;
    background-color: #f4f4f4;
    padding: 2rem;
}

.formWrapper {
    background: #2d2d2d;
    padding: 2rem; 
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    width: 100%;
    max-width: 320px; 
    text-align: center;
}

.formWrapper h1 {
    margin-bottom: 1.2rem; 
    color: #f5f5f5; 
    font-size: 1.6rem; 
}

.inputGroup {
    margin-bottom: 0.8rem; 
    text-align: left;
    width: 100%; /* Ensures the wrapper also respects the width */
}

.inputGroup label {
    display: block;
    margin-bottom: 0.4rem;
    color: #cccccc; 
    font-weight: bold;
    font-size: 0.9rem; 
}

.inputGroup input {
    display: block; /* Forces block-level behavior */
    box-sizing: border-box; /* Forces padding/border inside the 100% width */
    width: 100%;
    padding: 0.6rem; 
    border: 1px solid #555; 
    border-radius: 4px;
    font-size: 0.9rem; 
    background-color: #3d3d3d; 
    color: #ffffff; 
}

.submitButton {
    display: block; /* Forces block-level behavior */
    box-sizing: border-box; /* Forces padding/border inside the 100% width */
    width: 100%;
    padding: 0.7rem; 
    border: none;
    border-radius: 4px;
    background-color: #FEB500;
    color: #222222;
    font-size: 1rem; 
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin-top: 1.2rem; /* Added a tiny bit more margin to separate from the password input */
}

.submitButton:hover {
    background-color: #f8b400;
}

.error {
    color: #ff6b6b; 
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.success {
    color: #6bff9b; 
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.linkText {
    margin-top: 1.5rem;
    color: #bbbbbb; 
    font-size: 0.9rem;
}

.linkText a {
    color: #FEB500; 
    text-decoration: none;
    font-weight: bold;
}

.linkText a:hover {
    text-decoration: underline;
}