.separator {
    display: flex;
    align-items: center;
    text-align: center;
    margin: 1.5rem 0;
    /* Adjust spacing as needed */
}

.separator::before,
.separator::after {
    content: "";
    flex: 1;
    border-bottom: 1px solid #ccc;
    /* Change color if needed */
    margin: 0 10px;
    /* Space between line and text */
}

.full-width-btn {
    width: 100%;
    /* Make the button full width */
    display: block;
    /* Make it a block element */
}

/* Add font awesome for the Gmail icon */
.btn-google i {
    margin-right: 8px;
    /* Space between icon and text */
}

.btn-google {
    display: flex;
    /* Use flexbox to align items */
    align-items: center;
    /* Center items vertically */
    width: 100%;
    /* Ensure it takes full width */
}

.btn-google i {
    margin-right: 8px;
    /* Space between icon and text */
}

.btn-google span {
    flex-grow: 1;
    /* Allow text to take remaining space */
    text-align: center;
    /* Center text */
}

.btn-google {
    background-color: #f8f7f736;
    color: #5d5d5d;
    border: 1px solid #ccc;
    /* border-radius: 0; */
    height: 42.5px;
    padding: 10px;
    display: flex;
    align-items: center;
    width: 100%;
}
.btn-google i {
    margin-right: 8px; /* Space between icon and text */
}

.btn-google span {
    flex-grow: 1; /* Allow text to take remaining space */
    text-align: center; /* Center text */
}

.btn-google:hover {
    background-color: #c23321;
    /* Darker Google red on hover */
    color: #fff;
}
.auth-modal-content {
    max-width: 600px;
    /* Set the max-width you prefer */
    width: 100%;
    margin: auto;
}

@media (max-width: 768px) {
    .auth-modal-content {
        max-width: 100%;
        /* Full width on smaller screens */
    }
}

#authModal .modal-content {
    max-width: 500px;
}

#authModal .modal-body {
    padding: 10px 0px;
}

.auth-container {
    /* width: 424px; */
    /* Set the width to 424px */
    margin: 10px auto;
    padding: 15px 0 15px 0;
    background-color: #fff;
    border-radius: 4px;
    font-family: sans-serif;
    /* box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); */
}

.auth-container #signin-form,
.auth-container #signup-form {
    padding: 0px 20px;
}

.auth-container .btn-submit {
    line-height: 2;
    text-transform: uppercase;
}
.auth-container .form-group label {
    font-weight: 600;
    color: var(--Gray-900, #191c1f);
    font-size: 16px;
    font-weight: 500;
    line-height: 20px;
}

.auth-container .tabs {
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid #ddd;
    margin-bottom: 20px;
}

.auth-container .tabs button {
    flex: 1;
    background-color: transparent;
    border: none;
    padding: 10px;
    text-align: center;
    font-weight: 600;
    cursor: pointer;
    border-bottom: 2px solid transparent;

    color: var(--Gray-500, #77878f);
    text-align: center;

    /* Body/XL/600 */
    font-size: 19px;
    font-style: normal;
    font-weight: 600;
    line-height: 28px; /* 140% */
}

.auth-container .tabs button.active {
    border-bottom: 2px solid #007bff;
    color: var(--Gray-900, #191c1f);
    text-align: center;
}

.auth-container .forgot-password {
    color: var(--Secondary-500, #2da5f3);
}
.auth-container .terms-text {
    color: #333;
    color: var(--Gray-700, #475156);
    font-family: sans-serif;
    font-size: 14px;
}

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

.auth-container .form-control {
    line-height: 2;
    border-radius: 1px;
}

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

.auth-container .auth-footer a {
    color: #007bff;
    text-decoration: none;
}

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

.auth-container .form-toggle {
    display: none;
}

.auth-container .form-toggle.active {
    display: block;
}

/* OR divider styling */
.auth-container .divider {
    position: relative;
    text-align: center;
    margin: 20px 0;
}

.auth-container .divider::before,
.auth-container .divider::after {
    content: "";
    position: absolute;
    top: 50%;
    width: 40%;
    height: 1px;
    background: #ddd;
}

.auth-container .divider::before {
    left: 0;
}

.auth-container .divider::after {
    right: 0;
}

.auth-container .divider span {
    padding: 0 10px;
    background-color: #fff;
    color: #888;
    font-weight: 600;
}

/* Google Sign In Button */
.auth-container .google-btn {
    background-color: #fff;
    border: 1px solid #ddd;
    color: #555;
    font-weight: 600;
    width: 100%;
    padding: 10px;
    text-align: center;
    margin-top: 10px;
    cursor: pointer;
}

.auth-container .google-btn:hover {
    background-color: #f8f8f8;
    border-color: #ccc;
}

/* Password toggle icon */
.auth-container .input-group-text {
    cursor: pointer;
}
