/* Container & Layout */
.val-auth-container {
    padding: 3rem 1rem;
    background-color: #f9f9f9;
}

.val-auth-box {
    max-width: 500px;
    margin: 0 auto;
    background: #fff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.val-auth-title {
    font-size: 1.75rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
    text-align: center;
}

/* Alerts */
.val-auth-alert {
    padding: 1rem;
    border-radius: 5px;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.val-auth-alert-danger {
    background-color: #ffe5e5;
    color: #b20000;
    border: 1px solid #ffb3b3;
}

.val-auth-alert-success {
    background-color: #e6f9ed;
    color: #228b52;
    border: 1px solid #b3e8c7;
}

/* Form */
.val-auth-form input {
    width: 100%;
    padding: 0.75rem;
    margin-bottom: 1rem;
    font-size: 1rem;
    border: 1px solid #ccc;
    border-radius: 6px;
    transition: border-color 0.2s ease-in-out;
}

.val-auth-form input:focus {
    border-color: #246fe7;
    outline: none;
}

.val-auth-form button {
    width: 100%;
    background-color: #246fe7;
    color: white;
    padding: 0.75rem;
    font-size: 1rem;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.2s ease-in-out;
}

.val-auth-form button:hover {
    background-color: #1a57c9;
}

/* Links */
.val-auth-box p {
    margin-top: 1rem;
    text-align: center;
    font-size: 0.9rem;
}

.val-auth-box a {
    color: #246fe7;
    text-decoration: none;
}

.val-auth-box a:hover {
    text-decoration: underline;
}
