body {
    margin: 0;
    font-family: 'Open Sans', sans-serif;
    background-color: #181a20;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

.auth-container {
    background-color: #1e2329;
    padding: 2rem;
    border-radius: 12px;
    width: 100%;
    max-width: 400px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    text-align: center;
}

.logo {
    width: 60px;
    margin-bottom: 1rem;
}

h1 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

p.subtitle {
    color: #848e9c;
    margin-bottom: 2rem;
    font-size: 0.9rem;
}

.form-group {
    text-align: left;
    margin-bottom: 1.5rem;
}

label {
    display: block;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    color: #eaecef;
}

input {
    width: 100%;
    padding: 0.8rem;
    border-radius: 8px;
    border: 1px solid #474d57;
    background-color: transparent;
    color: white;
    box-sizing: border-box;
    font-size: 1rem;
}

input:focus {
    outline: none;
    border-color: #f0b90b;
}

.input-with-button {
    display: flex;
    gap: 0.5rem;
}

.verify-btn {
    background-color: transparent;
    border: 1px solid #f0b90b;
    color: #f0b90b;
    padding: 0 1rem;
    border-radius: 8px;
    cursor: pointer;
    font-size: 0.8rem;
    white-space: nowrap;
}

.forgot-password {
    display: block;
    text-align: right;
    color: #f0b90b;
    text-decoration: none;
    font-size: 0.8rem;
    margin-top: -1rem;
    margin-bottom: 1.5rem;
}

.submit-btn {
    width: 100%;
    padding: 1rem;
    border-radius: 8px;
    border: none;
    background-color: #f0b90b;
    color: #181a20;
    font-weight: bold;
    font-size: 1rem;
    cursor: pointer;
    margin-bottom: 1.5rem;
}

.submit-btn:hover {
    background-color: #d9a508;
}

.switch-auth {
    font-size: 0.9rem;
    color: #848e9c;
}

.switch-auth a {
    color: #f0b90b;
    text-decoration: none;
}

.error-message {
    color: #f6465d;
    font-size: 0.8rem;
    margin-bottom: 1rem;
    display: none;
}
