/* build/css/auth.css */

/* Center the entire page content */
.auth-body {
    background-color: #ecf0f1; 
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 20px;
}

.auth-container {
    width: 100%;
    max-width: 400px;
}

/* Styling the main card/box */
.auth-box {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.back-link {
    display: block;
    text-align: left;
    margin-bottom: 20px;
    color: #3498db;
    text-decoration: none;
    font-size: 0.9em;
}

.auth-box h2 {
    color: #2c3e50;
    margin-bottom: 25px;
    font-size: 1.8em;
}

/* Form inputs */
.auth-form input {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    border: 1px solid #bdc3c7;
    border-radius: 5px;
    font-size: 1em;
    transition: border-color 0.3s;
}

.auth-form input:focus {
    border-color: #e67e22; 
    outline: none;
}

.auth-button {
    width: 100%;
    margin-top: 10px;
}

/* Switch between login/register */
.auth-switch {
    margin-top: 20px;
    padding-top: 15px;
    border-top: 1px solid #ecf0f1;
}

.text-button {
    background: none;
    border: none;
    color: #e67e22;
    cursor: pointer;
    font-weight: bold;
    font-size: 1em;
    padding: 5px;
    transition: color 0.2s;
}

.text-button:hover {
    color: #d35400;
}