/* Authentication Form Styles */
.auth-container {
    max-width: 450px;
    margin: 40px auto;
    background-color: #161b22;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    padding: 30px;
}

.tabs {
    display: flex;
    margin-bottom: 20px;
    border-bottom: 1px solid #2a2e35;
}

.tabs button {
    background: none;
    border: none;
    color: #a9abb3;
    padding: 12px 20px;
    font-size: 16px;
    cursor: pointer;
    transition: color 0.3s, border-bottom 0.3s;
    position: relative;
}

.tabs button::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: transparent;
    transition: background-color 0.3s;
}

.tabs button.active {
    color: #1a73e8;
}

.tabs button.active::after {
    background-color: #1a73e8;
}

.auth-form h2 {
    font-size: 24px;
    color: #ffffff;
    margin-bottom: 24px;
    text-align: center;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 6px;
    color: #a9abb3;
    font-size: 14px;
}

.form-group input {
    width: 100%;
    padding: 12px;
    border: 1px solid #2a2e35;
    border-radius: 4px;
    background-color: #0e1217;
    color: #ffffff;
    font-size: 16px;
    transition: border-color 0.3s;
}

.form-group input:focus {
    outline: none;
    border-color: #1a73e8;
    box-shadow: 0 0 0 1px #1a73e8;
}

.form-group small {
    display: block;
    font-size: 12px;
    color: #6c7380;
    margin-top: 4px;
}

.submit-btn {
    width: 100%;
    padding: 12px;
    border: none;
    border-radius: 4px;
    background-color: #1a73e8;
    color: white;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.submit-btn:hover {
    background-color: #1557b0;
}

.error-message {
    background-color: rgba(220, 38, 38, 0.2);
    border: 1px solid rgba(220, 38, 38, 0.5);
    color: #f87171;
    padding: 12px;
    border-radius: 4px;
    margin-bottom: 20px;
    font-size: 14px;
}

.status-message {
    background-color: rgba(16, 185, 129, 0.2);
    border: 1px solid rgba(16, 185, 129, 0.5);
    color: #6ee7b7;
    padding: 12px;
    border-radius: 4px;
    margin-bottom: 20px;
    font-size: 14px;
}