.auth-container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f5f7fa 0%, #e4e8eb 100%);
    padding: 20px;
}

.auth-card {
    background: white;
    padding: 2rem;
    border-radius: 0.5rem;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 400px;
}

.auth-header {
    text-align: center;
    margin-bottom: 2rem;
}

.auth-logo {
    width: 48px;
    height: 48px;
    margin: 0 auto 1rem;
}

.auth-logo svg {
    width: 100%;
    height: 100%;
}

.auth-header h2 {
    font-size: 1.75rem;
    color: #2d3748;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.auth-header p {
    color: #718096;
    font-size: 0.95rem;
}

.form-group {
    margin-bottom: 1rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #4a5568;
    font-weight: 500;
    font-size: 0.95rem;
}

.form-control {
    display: block;
    width: calc(100% - 3rem);
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    border: 1.5px solid #e2e8f0;
    border-radius: 0.75rem;
    margin-top: 0.25rem;
    transition: all 0.2s;
    background-color: #f8fafc;
}

.form-control:focus {
    outline: none;
    border-color: #3182ce;
    background-color: #fff;
    box-shadow: 0 0 0 3px rgba(49, 130, 206, 0.1);
}

.btn-primary {
    width: 100%;
    padding: 0.75rem;
    background-color: #3182ce;
    color: white;
    border: none;
    border-radius: 0.375rem;
    font-weight: 500;
    margin-bottom: 1rem;
}

.btn-primary:hover {
    background-color: #2c5282;
}

.auth-footer {
    margin-top: 1.5rem;
    text-align: center;
}

.auth-links {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.auth-link {
    color: #3182ce;
    text-decoration: none;
    font-size: 0.875rem;
}

.auth-link:hover {
    text-decoration: underline;
}

.form-check {
    display: flex;
    align-items: center;
    margin-top: 1rem;
}

.form-check-input {
    width: 1rem;
    height: 1rem;
    margin-right: 0.5rem;
    border-radius: 0.25rem;
    border: 1.5px solid #cbd5e0;
}

.form-check-label {
    user-select: none;
    cursor: pointer;
    color: #4a5568;
    font-size: 0.95rem;
}

.text-danger {
    color: #e53e3e;
    font-size: 0.875rem;
    display: block;
    margin-top: 0.375rem;
}

.validation-summary-errors {
    background-color: #fff5f5;
    border: 1px solid #feb2b2;
    color: #c53030;
    padding: 1rem;
    border-radius: 0.75rem;
    margin-bottom: 1.5rem;
    font-size: 0.875rem;
}

.validation-summary-errors ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.form-check {
    display: flex;
    align-items: center;
    margin-top: 1rem;
}

.form-check-input {
    margin-right: 0.5rem;
}

.form-check-label {
    user-select: none;
    cursor: pointer;
}

.form-check-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
}

.form-check-input {
    cursor: pointer;
}