body.twitter-login-page {
    background-color: #fff;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    overflow-x: hidden;
    margin: 0;
    padding: 0;
}

.twitter-login-container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    width: 100%;
}

.login-modal {
    position: relative;
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    padding: 20px;
}

.top-close-icon {
    position: absolute;
    top: 10px;
    left: 10px;
}

.close-btn {
    font-size: 18px;
    cursor: pointer;
    color: #000;
}

.login-logo {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

.login-logo img,
.login-logo svg {
    height: 40px;
}

.login-heading {
    font-size: 31px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 32px;
    color: #0f1419;
}

.social-login-buttons {
    display: none !important;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 24px;
}

.social-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 10px 0;
    border-radius: 9999px;
    border: 1px solid #dadce0;
    background-color: white;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.2s;
}

.social-btn:hover {
    background-color: rgba(0, 0, 0, 0.03);
}

.divider {
    display: flex;
    align-items: center;
    margin: 12px 0;
    width: 100%;
}

.divider::before,
.divider::after {
    content: "";
    flex: 1;
    border-bottom: 1px solid #ebeef0;
}

.divider span {
    padding: 0 20px;
    color: #536471;
    font-size: 15px;
}

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

.form-control {
    width: 100%;
    padding: 16px 12px;
    border: 1px solid #cfd9de;
    border-radius: 4px;
    font-size: 16px;
    background-color: white;
    box-sizing: border-box;
}

.form-control:focus {
    outline: none;
    border-color: #1d9bf0;
    box-shadow: 0 0 0 1px #1d9bf0;
}

.password-wrapper {
    position: relative;
}

.toggle-password {
    border: none !important;
    box-shadow: none !important;
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    cursor: pointer;
    padding: 0 !important;
    display: flex;
    align-items: center;
    justify-content: center;
}

button.toggle-password:focus, button.toggle-password:hover {
    background-color: inherit !important;
}

.toggle-password svg {
    fill: #536471;
    width: 20px;
    height: 20px;
}

.toggle-password:hover svg {
    fill: #0f1419;
}

.form-options {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.remember-me {
    display: flex;
    align-items: center;
    font-size: 14px;
    color: #536471;
}

.remember-me input {
    margin-right: 8px;
}

.next-btn,
.login-btn {
    width: 100%;
    background-color: #0f1419;
    color: white;
    border: none;
    border-radius: 9999px;
    font-size: 15px;
    font-weight: 700;
    padding: 12px 0;
    cursor: pointer;
    margin-bottom: 20px;
    transition: background-color 0.2s;
}

.next-btn:hover,
.login-btn:hover {
    background-color: rgba(15, 20, 25, 0.9);
}

.forgot-password {
    text-align: center;
    margin-bottom: 32px;
}

.forgot-password a {
    color: #1d9bf0;
    text-decoration: none;
    font-size: 15px;
}

.register-link {
    text-align: center;
    font-size: 15px;
    color: #536471;
    margin-top: 40px;
}

.register-link a {
    color: #1d9bf0;
    text-decoration: none;
}

/* Responsividade */
@media (max-width: 600px) {
    .login-modal {
        padding: 0 20px;
    }
}

/* Override Tutor LMS default styles */
.tutor-login-form-wrapper,
.tutor-page-wrap,
.tutor-login-wrap {
    background: none !important;
    box-shadow: none !important;
    max-width: 100% !important;
    padding: 0 !important;
    margin: 0 !important;
}

/* Esconde elementos do tema/header para tela de login */
body.twitter-login-page header.site-header,
body.twitter-login-page footer.site-footer {
    display: none !important;
}

body.twitter-login-page #page.site {
    margin: 0 !important;
    padding: 0 !important;
} 