
/* Conteúdo principal */
.auth-section{
   width: 100%;
   display: flex;
   justify-content: center;
   margin: 1rem auto 1rem;
}
.page-title {
   font-size: 32px;
   font-weight: 700;
   color: #1e293b;
   margin-bottom: 12px;
   text-align: center;
}

.page-subtitle {
   font-size: 16px;
   color: #64748b;
   margin-bottom: 40px;
   text-align: center;
   max-width: 500px;
}

.auth-container {
   background-color: #ffffff;
   border-radius: 12px;
   box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
   width: 100%;
   max-width: 480px;
   overflow: hidden;
   border: 1px solid rgba(226, 232, 240, 0.8);
}

.auth-header {
   background: linear-gradient(135deg, #4f46e5 0%, #3e37cc 100%);
   padding: 40px 30px;
   text-align: center;
   color: white;
}

.auth-header h2 {
   font-size: 28px;
   font-weight: 700;
   margin-bottom: 10px;
   color: var(--light-color);
}

.auth-header p {
   font-size: 16px;
   opacity: 0.9;
   font-weight: 400;
}

.auth-content {
   padding: 40px 30px;
}

.form-group {
   margin-bottom: 24px;
}

.form-group label {
   display: block;
   margin-bottom: 10px;
   font-weight: 500;
   color: #334155;
   font-size: 15px;
}

.input-wrapper {
   position: relative;
}

.form-group input {
   width: 100%;
   padding: 14px 16px;
   border: 1px solid #e2e8f0;
   border-radius: 8px;
   font-size: 15px;
   transition: all 0.2s ease;
   background-color: #ffffff;
}

.form-group input:focus {
   outline: none;
   border-color: #4f46e5;
   box-shadow: 0 0 0 3px rgba(74, 108, 247, 0.1);
}

.btn {
   display: block;
   width: 100%;
   padding: 14px 20px;
   background: linear-gradient(135deg, #4f46e5 0%, #3e37cc 100%);
   color: white;
   border: none;
   border-radius: 8px;
   font-size: 16px;
   font-weight: 600;
   cursor: pointer;
   transition: all 0.2s ease;
   box-shadow: 0 4px 6px rgba(74, 108, 247, 0.2);
   margin-bottom: 24px;
}

.btn:hover {
   transform: translateY(-1px);
   box-shadow: 0 6px 8px rgba(74, 108, 247, 0.25);
}

.btn:active {
   transform: translateY(0);
   box-shadow: 0 2px 4px rgba(74, 108, 247, 0.2);
}

.back-to-login {
   text-align: center;
   color: #64748b;
   font-size: 15px;
}

.back-to-login a {
   color: #4f46e5;
   text-decoration: none;
   font-weight: 600;
   transition: color 0.2s ease;
}

.back-to-login a:hover {
   color: #3e37cc;
   text-decoration: underline;
}

/* Mensagens de erro e sucesso */
.message {
   padding: 14px 16px;
   border-radius: 8px;
   margin-bottom: 24px;
   font-size: 14px;
   display: flex;
   width: 100%;
   font-weight: 500;
   align-items: center;
}

.message.error {
   background-color: #fef2f2;
   color: #b91c1c;
   border-left: 4px solid #ef4444;
}

.message.success {
   background-color: #f0fdf4;
   color: #166534;
   border-left: 4px solid #10b981;
}

.message i {
   margin-right: 10px;
   font-size: 16px;
}

/* Responsividade */
@media (max-width: 768px) {
   .page-title {
      font-size: 28px;
   }

   .auth-container {
      max-width: 100%;
   }

   .auth-header {
      padding: 30px 20px;
   }

   .auth-header h2 {
      font-size: 24px;
   }

   .auth-content {
      padding: 30px 20px;
   }
}

@media (max-width: 480px) {
   .form-group input {
      padding: 12px 14px;
   }

   .btn {
      padding: 12px 16px;
   }
}