﻿section#content {
  background: #fff;
}

.email-signup {
  text-align: left;
  color: black;
  background: #f5f5f5;
  padding: 40px;
  border-radius: 4px;
  border: solid 1px #d8d8d8;
  max-width: 950px;
  margin-left: auto;
  margin-right: auto;
}

.register-container {
  background-image: none !important;
}

.separator-line {
  border-top: 1px solid #d9dadc;
  display: block;
  line-height: 1px;
  margin: 20px 0;
  position: relative;
  text-align: center;
}

.separator-line strong {
  text-transform: uppercase;
  padding: 0 23px;
  color: #616161;
  font-weight: 700;
  font-size: 15px;
}

.container-logo-login {
  display: flex;
  justify-content: center;
}

.logo-parceiro {
  margin-bottom: 10px;
  width: 170px;
  height: auto;
}

.a-label {
  font-size: 15px;
}

.padding-10 {
  margin-top: 10px;
}

.margin-bottom-15 {
  margin-bottom: 15px !important;
}

.providerLogo {
  width: 22px;
  margin-right: 10px;
}

.gprovider {
  background-color: white;
}

.fprovider {
  background-color: #3b5998;
  color: white;
}

.gprovider,
.fprovider,
.providers {
  margin-top: 10px;
  font-size: 17px;
  border-radius: 5px;
  cursor: pointer;
  height: 41px;
  padding-top: 9px;
}

.fprovider i {
  margin-right: 10px;
}

.gprovider {
  border: #bbbbbb 1px solid;
}

.gprovider span {
  color: black;
}

.gprovider img {
  position: relative;
  top: -1px;
}

.btn-cadastro {
  line-height: 0px;
  height: 45px;
  text-transform: uppercase;
}

.help-block {
  color: #fff !important;
  background: #f56c6c;
  width: fit-content;
  padding: 4px 7px;
  border-radius: 3px;
  margin-left: 0px;
  margin-top: 0px !important;
}

/* Estilos para páginas de login/cadastro com Element Plus */
#lembrarSenhaPage .login-container,
#recuperarSenhaPage .login-container,
#registerPage .login-container,
#loginPage .login-container {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

#lembrarSenhaPage .login-card,
#recuperarSenhaPage .login-card,
#registerPage .login-card,
#loginPage .login-card {
  border-radius: 12px;
  padding: 40px 30px;
  background: #ffffff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  border: 1px solid #e4e7ed;
  width: 100%;
  max-width: 700px;
}

#lembrarSenhaPage .logo-container,
#recuperarSenhaPage .logo-container,
#registerPage .logo-container,
#loginPage .logo-container {
  text-align: center;
  margin-bottom: 10px;
}

#lembrarSenhaPage .agency-logo,
#recuperarSenhaPage .agency-logo,
#registerPage .agency-logo {
  max-width: 160px;
  object-fit: contain;
}

#lembrarSenhaPage .logo-fallback,
#recuperarSenhaPage .logo-fallback,
#registerPage .logo-fallback {
  font-size: 24px;
  font-weight: 600;
  color: #409eff;
  padding: 15px;
  border-radius: 8px;
  background: rgba(64, 158, 255, 0.1);
}

#lembrarSenhaPage .header-section,
#recuperarSenhaPage .header-section,
#registerPage .header-section {
  text-align: center;
  margin-bottom: 30px;
}

#lembrarSenhaPage .page-title,
#recuperarSenhaPage .page-title,
#registerPage .page-title {
  font-size: 28px;
  font-weight: 600;
  color: #303133;
  margin: 0 0 15px 0;
  line-height: 1.2;
}

#lembrarSenhaPage .page-description,
#recuperarSenhaPage .page-description,
#registerPage .page-description {
  font-size: 16px;
  color: #606266;
  margin: 0;
  line-height: 1.5;
}

#lembrarSenhaPage .recovery-form,
#recuperarSenhaPage .recovery-form,
#registerPage .register-form {
  margin-bottom: 20px;
}

#lembrarSenhaPage .form-group,
#recuperarSenhaPage .form-group,
#registerPage .form-group {
  margin-bottom: 20px;
}

#lembrarSenhaPage .message-alert,
#recuperarSenhaPage .message-alert,
#registerPage .message-alert {
  margin-bottom: 20px;
}

#lembrarSenhaPage .submit-section,
#recuperarSenhaPage .submit-section,
#registerPage .submit-section {
  margin-bottom: 0;
}

#lembrarSenhaPage .submit-button,
#recuperarSenhaPage .submit-button,
#registerPage .submit-button {
  width: 100%;
  height: 48px;
  font-size: 16px;
  font-weight: 500;
  border-radius: 8px;
  background: #409eff;
  border: none;
}

#lembrarSenhaPage .submit-button:hover,
#recuperarSenhaPage .submit-button:hover,
#registerPage .submit-button:hover {
  background: #36a3f7;
}

#lembrarSenhaPage .navigation-links,
#recuperarSenhaPage .navigation-links,
#registerPage .navigation-links {
  text-align: center;
}

#lembrarSenhaPage .link-item,
#recuperarSenhaPage .link-item,
#registerPage .link-item {
  margin: 15px 0;
}

#lembrarSenhaPage .link-item .el-link,
#recuperarSenhaPage .link-item .el-link,
#registerPage .link-item .el-link {
  font-size: 14px;
  font-weight: 500;
}

/* Animações */
#lembrarSenhaPage .login-card,
#recuperarSenhaPage .login-card,
#registerPage .login-card {
  animation: fadeInUp 0.6s ease-out;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Customização do Element Plus */
#lembrarSenhaPage .el-input__inner,
#recuperarSenhaPage .el-input__inner,
#registerPage .el-input__inner {
  border-radius: 8px;
  border: 2px solid #e4e7ed;
  transition: all 0.3s ease;
}

#lembrarSenhaPage .el-input__inner:focus,
#recuperarSenhaPage .el-input__inner:focus,
#registerPage .el-input__inner:focus {
  border-color: #409eff;
  box-shadow: 0 0 0 2px rgba(64, 158, 255, 0.2);
}

#lembrarSenhaPage .el-alert,
#recuperarSenhaPage .el-alert,
#registerPage .el-alert {
  border-radius: 8px;
  border: none;
}

#lembrarSenhaPage .el-divider,
#recuperarSenhaPage .el-divider,
#registerPage .el-divider {
  margin: 20px 0;
}

/* Estilos específicos para cadastro */
#registerPage .terms-section {
  margin-top: 10px;
}

#registerPage .terms-text {
  font-size: 12px;
  color: #909399;
  margin: 0;
  line-height: 1.4;
  text-align: center;
}

/* Estilos específicos para página de login principal */
#loginPage .login-header {
  text-align: center;
  margin-bottom: 30px;
}

#loginPage .login-header h2 {
  font-size: 28px;
  font-weight: 600;
  color: #303133;
  margin: 0 0 10px 0;
  line-height: 1.2;
}

#loginPage .login-header p {
  font-size: 16px;
  color: #606266;
  margin: 0;
  line-height: 1.5;
}

#loginPage .login-form {
  margin-bottom: 20px;
}

#loginPage .form-group {
  margin-bottom: 20px;
}

#loginPage .form-options {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

#loginPage .forgot-password {
  flex: 1;
  text-align: right;
}

#loginPage .login-button {
  width: 100%;
  height: 48px;
  font-size: 16px;
  font-weight: 500;
  border-radius: 8px;
}

#loginPage .register-link {
  text-align: center;
  margin: 20px 0;
  color: #606266;
}

#loginPage .social-separator {
  margin: 20px 0;
}

#loginPage .slogan-container {
  text-align: center;
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid #e4e7ed;
}

#loginPage .slogan-text {
  font-size: 14px;
  color: #909399;
  margin: 0;
  font-style: italic;
}

#loginPage .logo-texto {
  font-size: 20px;
  font-weight: 600;
  color: #409eff;
  padding: 15px;
  border-radius: 8px;
  background: rgba(64, 158, 255, 0.1);
}

/* Responsividade simples */
@media (max-width: 768px) {
  #lembrarSenhaPage .login-card,
  #recuperarSenhaPage .login-card,
  #registerPage .login-card,
  #loginPage .login-card {
    padding: 30px 20px;
  }

  #loginPage .form-options {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  #loginPage .forgot-password {
    text-align: left;
  }
}
