.auth-page {
    font-family: 'Montserrat', sans-serif;
    background-color: #f5f5f5;
    color: #333;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    padding: 20px;
}

.auth-wrapper {
    display: flex;
    max-width: 1200px;
    width: 100%;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.login-page .auth-container {
    padding: 40px;
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
}

.auth-container {
    padding: 40px;
    width: 50%;
    display: flex;
    flex-direction: column;
}

.auth-decoration {
    width: 50%;
    background: linear-gradient(135deg, #2c3e50, #3498db);
    position: relative;
    overflow: hidden;
    display: flex;
}

.decoration-image {
    background-image: url('../img/logo-brasileirao.png');
    background-size: cover;
    background-position: center;
    width: 100%;
    height: 100%;
    opacity: 0.7;
}

.decoration-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
}

.auth-logo-container {
    text-align: center;
    margin-bottom: 30px;
}

.auth-logo-container img{
  width: 15rem;
  height: auto;
  object-fit: cover;
}


.auth-logo {
    height: 80px;
    margin-bottom: 15px;
}

.auth-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.5rem;
    color: #2c3e50;
    margin: 0;
    letter-spacing: 1px;
}

.auth-subtitle {
    color: #7f8c8d;
    margin-bottom: 30px;
    text-align: center;
    font-size: 1.1rem;
}

.auth-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

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

.input-with-icon {
    position: relative;
    display: flex;
    align-items: center;
}

.input-with-icon i {
    position: absolute;
    left: 15px;
    color: #7f8c8d;
    font-size: 1rem;
}

.input-with-icon input {
    width: 90%;
    padding: 12px 15px 12px 40px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 0.9rem;
    transition: all 0.3s;
}

.input-with-icon input:focus {
    border-color: #3498db;
    box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.2);
    outline: none;
}

.password-input {
    position: relative;
    width: 100%;
}

.toggle-password {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: #7f8c8d;
    cursor: pointer;
    padding: 5px;
}

.form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.remember-me {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-size: 0.9rem;
    color: #7f8c8d;
}

.remember-me input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

.checkmark {
    display: inline-block;
    width: 18px;
    height: 18px;
    background-color: white;
    border: 1px solid #ddd;
    border-radius: 4px;
    margin-right: 8px;
    position: relative;
}

.remember-me input:checked ~ .checkmark {
    background-color: #3498db;
    border-color: #3498db;
}

.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

.remember-me input:checked ~ .checkmark:after {
    display: block;
}

.remember-me .checkmark:after {
    left: 6px;
    top: 2px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.forgot-password {
    color: #3498db;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s;
}

.forgot-password:hover {
    color: #2980b9;
    text-decoration: underline;
}

.btn-auth {
    background-color: #3498db;
    color: white;
    border: none;
    padding: 12px;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.btn-auth:hover {
    background-color: #2980b9;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(52, 152, 219, 0.3);
}

.auth-footer {
    text-align: center;
    margin-top: 20px;
    color: #7f8c8d;
    font-size: 0.9rem;
}

.auth-link {
    color: #3498db;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

.auth-link:hover {
    color: #2980b9;
    text-decoration: underline;
}

.auth-messages {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}

.auth-messages li {
    padding: 10px 15px;
    border-radius: 5px;
    margin-bottom: 10px;
    font-size: 0.9rem;
}

.auth-messages .error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.auth-messages .success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

/* Estilos específicos para a página de registro */
.register-page .auth-container {
    padding: 40px;
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
}

.form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
}

.form-row .form-group {
    flex: 1;
}

.form-row .form-group.full-width {
    flex: 0 0 100%;
}


.form-terms {
    margin: 20px 0;
    font-size: 0.85rem;
    color: #7f8c8d;
}

.terms-check {
    display: flex;
    align-items: center;
    cursor: pointer;
    line-height: 1.4;
}

.terms-check input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

.terms-check .checkmark {
    display: inline-block;
    width: 18px;
    height: 18px;
    background-color: white;
    border: 1px solid #ddd;
    border-radius: 4px;
    margin-right: 8px;
    position: relative;
    flex-shrink: 0;
}

.terms-check input:checked ~ .checkmark {
    background-color: #3498db;
    border-color: #3498db;
}

.terms-check .checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

.terms-check input:checked ~ .checkmark:after {
    display: block;
}

.terms-check .checkmark:after {
    left: 6px;
    top: 2px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.terms-link {
    color: #3498db;
    text-decoration: none;
    font-weight: 600;
}

.terms-link:hover {
    text-decoration: underline;
}

/* Responsividade */
@media (max-width: 768px) {
    .auth-wrapper {
        flex-direction: column;
    }

    .login-page .auth-wrapper {
        flex-direction: column;
    }

    .login-page .auth-decoration {
        display: none;
    }

    .login-page .auth-container {
        padding: 30px 20px;
        width: 90%;
    }

    .auth-decoration {
        display: none;
    }

    .auth-container {
        padding: 30px 20px;
    }

    .form-row {
        flex-direction: column;
        gap: 15px;
    }

    .form-row .form-group {
        flex: 0 0 100%;
    }



}
