/* Auth Forms Styling */
.auth-container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.auth-box {
    background: #fff;
    /* background: #f5f5f5; */
    border-radius: 12px;
    padding: 40px 32px;
    width: 100%;
    max-width: 400px;
    box-shadow: 0 1px 5px rgba(0, 0, 0, 0.15)
}

.auth-header {
    text-align: center !important;
    margin-bottom: 40px !important;
}

.auth-title {
    font-size: 32px !important;
    font-weight: 700 !important;
    color: #000 !important;
    margin-bottom: 8px !important;
}

.auth-subtitle {
    font-size: 14px;
    color: #666;
    font-weight: 400;
}

.auth-form-title {
    font-size: 24px !important;
    font-weight: 700 !important;
    color: #000 !important;
    margin-bottom: 32px !important;
}

.auth-field {
    margin-bottom: 8px;
}

.auth-label {
    display: block;
    font-size: 14px;
    color: #333;
    margin-bottom: 8px;
    font-weight: 400;
}

.auth-input {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    font-size: 14px;
    background: #f8f9ff;
    color: #333;
    transition: border-color 0.2s;
}

.auth-input:focus {
    outline: none;
    background-color: #fff !important;
    border-color: #5b6cf8 !important;
}

.auth-textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    font-size: 14px;
    background: #f8f9ff;
    color: #333;
    resize: vertical;
    min-height: 100px;
    transition: border-color 0.2s;
    font-family: inherit;
}

.auth-textarea:focus {
    outline: none;
    background-color: #fff !important;
    border-color: #5b6cf8 !important;
}



.auth-button {
    width: 100%;
    padding: 14px;
    background: #1a1a2e;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
    margin-bottom: 20px;
}

.auth-button:hover {
    background: #0f0f1e;
    color: #fff !important;
}

.auth-footer {
    text-align: center;
    font-size: 14px;
    color: #666;
}

.auth-footer a {
    color: #000;
    text-decoration: none;
    font-weight: 600;
}

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

.auth-message {
    margin: 16px 0;
    padding: 12px 16px;
    border-radius: 8px;
    font-size: 14px;
}

.auth-message.success {
    background: #dcfce7;
    color: #166534;
    border: 1px solid #bbf7d0;
}

.auth-message.error {
    background: #fef2f2;
    color: #dc2626;
    border: 1px solid #fecaca;
}

.auth-checkbox-wrapper {
    display: flex;
    align-items: center;
    margin: 8px 0;
}

.auth-checkbox {
    width: 18px;
    height: 18px;
    margin-right: 10px;
    cursor: pointer;
    accent-color: #000;
}

.auth-checkbox-text {
    font-size: 13px;
    color: #333;
    cursor: pointer;
}

.auth-checkbox-text a {
    color: #000;
    text-decoration: none;
    font-weight: 600;
}