/* Container styling: Adjusted for integration within the Account accordion */
.auth-module {
    font-family: Arial, sans-serif;
    max-width: 100%;
    margin: 10px 0;
    padding: 10px;
    background-color: #f9f9f9;
    animation: fadeIn 0.3s ease-out;
}

/* Fade in animation for the container */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Tabs */
.tabs {
    display: flex;
    background-color: #eaeaea;
    border-bottom: 1px solid #ccc;
    margin-bottom: 10px;
}

.tab-button {
    flex: 1;
    padding: 8px;
    text-align: center;
    cursor: pointer;
    border: none;
    background-color: #eaeaea;
    font-size: 14px;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.tab-button:hover {
    transform: scale(1.02);
}

.tab-button.active {
    background-color: #fff;
    border-bottom: 2px solid #007aff;
    font-weight: bold;
}

/* Tab content with fade in transition */
.tab-content {
    padding: 10px;
    display: none;
    background-color: #fff;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.tab-content.active {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

/* Social login tiles */
.social-login-options {
    display: flex;
    justify-content: space-around;
    margin-bottom: 10px;
}

.social-tile {
    width: 60px;
    height: 60px;
    border: 1px solid #ccc;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border-radius: 4px;
    font-size: 12px;
    background-color: #fafafa;
    transition: transform 0.2s ease, background-color 0.2s ease;
}

.social-tile:hover {
    background-color: #f0f0f0;
    transform: scale(1.05);
}

/* Form fields */
.form-group {
    margin-bottom: 8px;
}

.form-group input {
    width: 100%;
    padding: 6px;
    box-sizing: border-box;
    border: 1px solid #ccc;
    border-radius: 4px;
    transition: border-color 0.3s ease;
}

.form-group input:focus {
    border-color: #007aff;
}

/* Buttons */
button.submit-btn {
    width: 100%;
    padding: 8px;
    background-color: #007aff;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    transition: transform 0.1s ease, background-color 0.3s ease;
}

button.submit-btn:active {
    transform: scale(0.98);
}

button.submit-btn:hover {
    background-color: #005bb5;
}
