
/* Auth pages styles */

.auth-container {
    max-width: 500px;
    margin: 20px auto;
    padding: 20px;
    background-color: #fff;
    border-radius: 4px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.auth-header {
    text-align: center;
    color: #444;
    margin-bottom: 20px;
}

.auth-divider {
    border: 0;
    height: 1px;
    background: #e0e0e0;
    margin: 20px 0;
}

.auth-or {
    display: block;
    text-align: center;
    color: #888;
    font-size: 14px;
    margin: -30px auto 20px;
    background: #fff;
    width: 40px;
}

.auth-social {
    text-align: center;
    margin-bottom: 20px;
}

.auth-help-text {
    color: #777;
    font-size: 0.9em;
    text-align: center;
    margin-top: 10px;
    line-height: 1.4;
}

.auth-form-group {
    margin-bottom: 15px;
}

.auth-label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
    color: #555;
}

.auth-input {
    width: 100%;
    padding: 8px 10px;
    font-size: 14px;
    border: 1px solid #ccc;
    border-radius: 3px;
    box-sizing: border-box; /* Important for padding */
}

.auth-input:focus {
    border-color: #4D90FE;
    outline: none;
    box-shadow: 0 0 3px rgba(77, 144, 254, 0.3);
}

.auth-help-small {
    display: block;
    font-size: 11px;
    color: #999;
    margin-top: 3px;
}

.auth-error {
    color: #d14836;
    font-size: 12px;
    margin-top: 3px;
    display: block;
}

.auth-checkbox-group {
    font-size: 13px;
    color: #555;
    margin-bottom: 15px;
}

.auth-checkbox-label {
    display: block;
    margin-bottom: 8px;
    cursor: pointer;
}

.auth-checkbox-label input {
    margin-right: 5px;
    vertical-align: middle;
}

.auth-actions {
    text-align: center;
    margin-top: 20px;
}

.auth-button {
    background-color: #4D90FE;
    color: #fff;
    border: 1px solid #428AFF;
    border-radius: 3px;
    padding: 10px 20px;
    font-size: 14px;
    cursor: pointer;
    box-shadow: 0 1px 2px rgba(0,0,0,0.1);
    transition: background 0.2s;
}

.auth-button:hover {
    background-color: #3C7BE0;
}

.auth-button:disabled {
    background-color: #ccc;
    border-color: #bbb;
    cursor: not-allowed;
    opacity: 0.7;
}

.auth-button-secondary {
    background-color: #f5f5f5;
    color: #333;
    border: 1px solid #ccc;
    border-radius: 3px;
    padding: 10px 20px;
    font-size: 14px;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: background 0.2s;
    margin-right: 10px;
}

.auth-button-secondary:hover {
    background-color: #e0e0e0;
    color: #333;
    text-decoration: none;
}

.auth-info-box {
    background-color: #e8f0fe;
    border: 1px solid #d2e3fc;
    color: #333;
    padding: 15px;
    border-radius: 4px;
    margin-bottom: 20px;
    font-size: 14px;
    line-height: 1.5;
}

.auth-info-box ul {
    margin: 10px 0 0 20px;
    padding: 0;
}

.auth-info-box li {
    margin-bottom: 5px;
}
