@import '_content/Blazored.Toast/Blazored.Toast.bundle.scp.css';

/* _content/Repluggar.Web/Components/CreatePostModal.razor.rz.scp.css */
.modal-overlay[b-oylqr1fqai] {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1050;
  animation: fadeIn-b-oylqr1fqai 0.2s ease;
}

@keyframes fadeIn-b-oylqr1fqai {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.modal-dialog-custom[b-oylqr1fqai] {
  max-width: 700px;
  width: 90%;
  max-height: 90vh;
  animation: slideIn-b-oylqr1fqai 0.3s ease;
}

@keyframes slideIn-b-oylqr1fqai {
  from {
    transform: translateY(-50px);
    opacity: 0;
  }

  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.modal-content-custom[b-oylqr1fqai] {
  background: white;
  border-radius: 16px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  max-height: 90vh;
}

.modal-header-custom[b-oylqr1fqai] {
  padding: 20px 24px;
  border-bottom: 1px solid #e9ecef;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.modal-header-custom .modal-title[b-oylqr1fqai] {
  font-size: 1.25rem;
  font-weight: 600;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 8px;
}

.modal-body-custom[b-oylqr1fqai] {
  padding: 24px;
  overflow-y: auto;
  flex: 1;
}

.modal-footer-custom[b-oylqr1fqai] {
  padding: 16px 24px;
  border-top: 1px solid #e9ecef;
  display: flex;
  gap: 12px;
  justify-content: flex-end;
}

.modal-footer-custom .btn[b-oylqr1fqai] {
  padding: 10px 24px;
  border-radius: 8px;
  font-weight: 500;
}

.form-label[b-oylqr1fqai] {
  font-weight: 600;
  margin-bottom: 8px;
  color: #495057;
}

.form-control[b-oylqr1fqai],
.form-select[b-oylqr1fqai] {
  border-radius: 8px;
  border: 1px solid #ced4da;
  padding: 10px 14px;
  transition: all 0.2s ease;
}

.form-control:focus[b-oylqr1fqai],
.form-select:focus[b-oylqr1fqai] {
  border-color: #0d6efd;
  box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.15);
}

textarea.form-control[b-oylqr1fqai] {
  resize: vertical;
  min-height: 150px;
}

@media (max-width: 768px) {
  .modal-dialog-custom[b-oylqr1fqai] {
    width: 95%;
  }

  .modal-header-custom[b-oylqr1fqai],
  .modal-body-custom[b-oylqr1fqai],
  .modal-footer-custom[b-oylqr1fqai] {
    padding: 16px;
  }

  .modal-footer-custom[b-oylqr1fqai] {
    flex-direction: column-reverse;
  }

  .modal-footer-custom .btn[b-oylqr1fqai] {
    width: 100%;
  }
}
/* _content/Repluggar.Web/Pages/CommunityDetails.razor.rz.scp.css */
.community-page[b-a54sw4ozb9] {
  /* Removido margin negativo que invadia o cabe�alho */
  padding-top: 0;
}

.community-header[b-a54sw4ozb9] {
  position: relative;
  margin-bottom: 2rem;
}

.community-banner[b-a54sw4ozb9] {
  height: 200px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 0 0 12px 12px;
}

.community-header-content[b-a54sw4ozb9] {
  display: flex;
  align-items: flex-end;
  margin-top: -110px;
  padding: 1.5rem 2rem;
  border-radius: 18px;
  background: #ffffff;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
  border: 1px solid rgba(148, 163, 184, 0.3);
}

.community-picture-wrapper[b-a54sw4ozb9] {
  flex-shrink: 0;
  margin-right: 2rem;
}

.community-picture-large[b-a54sw4ozb9] {
  width: 180px;
  height: 180px;
  border-radius: 12px;
  object-fit: cover;
  border: 5px solid white;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.community-picture-placeholder[b-a54sw4ozb9] {
  border: 5px solid white;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  font-weight: bold;
}

.community-header-info[b-a54sw4ozb9] {
  flex-grow: 1;
  color: #1f2933;
  padding-top: 0.5rem;
}

.community-name[b-a54sw4ozb9] {
  font-size: 2rem;
  font-weight: 600;
  color: #0f172a;
  text-shadow: none;
}

.community-header-info .badge[b-a54sw4ozb9] {
  font-size: 0.875rem;
  color: #1f2933;
}

.community-header-info > div[b-a54sw4ozb9],
.community-header-info span[b-a54sw4ozb9],
.community-header-info small[b-a54sw4ozb9] {
  color: #475569;
  text-shadow: none;
}

@media (max-width: 768px) {
  .community-banner[b-a54sw4ozb9] {
    height: 150px;
  }

  .community-header-content[b-a54sw4ozb9] {
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-top: -80px;
  }

  .community-picture-wrapper[b-a54sw4ozb9] {
    margin-right: 0;
    margin-bottom: 1rem;
  }

  .community-picture-large[b-a54sw4ozb9] {
    width: 120px;
    height: 120px;
  }

  .community-name[b-a54sw4ozb9] {
    font-size: 1.5rem;
  }
}
/* _content/Repluggar.Web/Pages/EditProfile.razor.rz.scp.css */
.edit-profile-page[b-v098ccatfb] {
   margin-top: 4.5rem;
   padding-top: 1.25rem;
   scroll-margin-top: 5rem;
   color: #212529;
 }
 
 @media (min-width: 992px) {
   .edit-profile-page[b-v098ccatfb] {
     margin-top: 5.5rem;
     padding-top: 1.5rem;
   }
 }

.edit-profile-page .card[b-v098ccatfb],
.edit-profile-page .card-body[b-v098ccatfb],
.edit-profile-page .form-label[b-v098ccatfb],
.edit-profile-page label[b-v098ccatfb],
.edit-profile-page h5[b-v098ccatfb],
.edit-profile-page p[b-v098ccatfb],
.edit-profile-page small[b-v098ccatfb],
.edit-profile-page .text-muted[b-v098ccatfb] {
  color: #212529;
}

.edit-profile-page .text-muted[b-v098ccatfb],
.edit-profile-page small[b-v098ccatfb] {
  color: #6c757d;
}
/* _content/Repluggar.Web/Pages/ForgotPassword.razor.rz.scp.css */
/* Estilos específicos para a página de recuperação de senha */
.forgot-password-page[b-6v94iog8fz] {
  min-height: 100vh;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: 0;
  width: 100vw;
  height: 100vh;
}

/* Logo da rede social */
.logo-container[b-6v94iog8fz] {
  text-align: center;
  margin-bottom: 2rem;
}

.logo-text[b-6v94iog8fz] {
  font-size: 3rem;
  font-weight: 800;
  color: #2d3748;
  margin-bottom: 0.5rem;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.logo-subtitle[b-6v94iog8fz] {
  color: #718096;
  font-size: 1.2rem;
  font-weight: 500;
  margin-bottom: 0;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.forgot-password-card[b-6v94iog8fz] {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
}

.forgot-password-card:hover[b-6v94iog8fz] {
  transform: translateY(-5px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.forgot-password-header[b-6v94iog8fz] {
  text-align: center;
  margin-bottom: 2rem;
}

.forgot-password-title[b-6v94iog8fz] {
  font-size: 2.5rem;
  font-weight: 700;
  color: #2d3748;
  margin-bottom: 0.5rem;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.forgot-password-subtitle[b-6v94iog8fz] {
  color: #718096;
  font-size: 1.1rem;
  margin-bottom: 0;
}

.forgot-password-form[b-6v94iog8fz] {
  width: 100%;
}

.form-group[b-6v94iog8fz] {
  margin-bottom: 1.5rem;
}

.form-label[b-6v94iog8fz] {
  font-weight: 600;
  color: #2d3748;
  margin-bottom: 0.75rem;
  font-size: 0.95rem;
}

.form-control[b-6v94iog8fz] {
  border: 2px solid #e2e8f0;
  border-radius: 12px;
  padding: 1rem 1.25rem;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  background-color: #f8fafc;
  width: 100%;
}

.form-control:focus[b-6v94iog8fz] {
  border-color: #667eea;
  box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
  background-color: #ffffff;
  outline: none;
}

.form-control:hover[b-6v94iog8fz] {
  border-color: #cbd5e0;
  background-color: #ffffff;
}

.form-control[b-6v94iog8fz]::placeholder {
  color: #a0aec0;
  font-style: italic;
}

.btn-forgot-password[b-6v94iog8fz] {
  width: 100%;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border: none;
  border-radius: 12px;
  color: white;
  padding: 1rem 1.5rem;
  font-size: 1.1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.btn-forgot-password:hover:not(:disabled)[b-6v94iog8fz] {
  background: linear-gradient(135deg, #5a67d8 0%, #6b46c1 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
}

.btn-forgot-password:active[b-6v94iog8fz] {
  transform: translateY(0);
  box-shadow: 0 2px 10px rgba(102, 126, 234, 0.3);
}

.btn-forgot-password:disabled[b-6v94iog8fz] {
  opacity: 0.7;
  cursor: not-allowed;
}

.forgot-password-links[b-6v94iog8fz] {
  text-align: center;
  margin-top: 1.5rem;
}

.forgot-password-links a[b-6v94iog8fz] {
  color: #667eea;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.forgot-password-links a:hover[b-6v94iog8fz] {
  color: #5a67d8;
  text-decoration: underline;
}

.alert[b-6v94iog8fz] {
  border-radius: 12px;
  padding: 1rem 1.25rem;
  margin-bottom: 1rem;
  border: none;
}

.alert-success[b-6v94iog8fz] {
  background-color: #f0fff4;
  color: #2f855a;
}

.alert-danger[b-6v94iog8fz] {
  background-color: #fed7d7;
  color: #c53030;
}

.alert-warning[b-6v94iog8fz] {
  background-color: #fef5e7;
  color: #d69e2e;
}

/* Icon styles */
.forgot-password-icon[b-6v94iog8fz] {
  font-size: 4rem;
  color: #667eea;
  margin-bottom: 1rem;
}

/* Responsividade */
@media (max-width: 768px) {
  .forgot-password-page[b-6v94iog8fz] {
    padding: 15px;
  }

  .forgot-password-card[b-6v94iog8fz] {
    max-width: 95%;
    margin: 0 auto;
  }

  .forgot-password-title[b-6v94iog8fz] {
    font-size: 2rem;
  }

  .forgot-password-subtitle[b-6v94iog8fz] {
    font-size: 1rem;
  }

  .form-control[b-6v94iog8fz] {
    min-width: auto;
  }

  .btn-forgot-password[b-6v94iog8fz] {
    padding: 0.875rem 1.5rem;
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .forgot-password-page[b-6v94iog8fz] {
    padding: 10px;
  }

  .forgot-password-title[b-6v94iog8fz] {
    font-size: 1.75rem;
  }

  .forgot-password-card[b-6v94iog8fz] {
    max-width: 98%;
    margin: 0 auto;
  }
}

/* Animações */
@keyframes fadeInUp-b-6v94iog8fz {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.forgot-password-card[b-6v94iog8fz] {
  animation: fadeInUp-b-6v94iog8fz 0.6s ease-out;
}

/* Melhorias de acessibilidade */
.form-control:focus[b-6v94iog8fz],
.btn-forgot-password:focus[b-6v94iog8fz] {
  outline: 2px solid #667eea;
  outline-offset: 2px;
}

/* Estados de loading */
.btn-forgot-password:disabled .spinner-border[b-6v94iog8fz] {
  width: 1rem;
  height: 1rem;
  border-width: 2px;
}
/* _content/Repluggar.Web/Pages/Login.razor.rz.scp.css */
/* Estilos específicos para a página de login */
.login-page[b-cf0vsm4zks] {
  min-height: 100vh;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: 0;
  width: 100vw;
  height: 100vh;
}

/* Logo da rede social */
.logo-container[b-cf0vsm4zks] {
  text-align: center;
  margin-bottom: 2rem;
}

.logo-text[b-cf0vsm4zks] {
  font-size: 3rem;
  font-weight: 800;
  color: #2d3748;
  margin-bottom: 0.5rem;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.logo-subtitle[b-cf0vsm4zks] {
  color: #718096;
  font-size: 1.2rem;
  font-weight: 500;
  margin-bottom: 0;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.login-card[b-cf0vsm4zks] {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
}

.login-card:hover[b-cf0vsm4zks] {
  transform: translateY(-5px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.login-header[b-cf0vsm4zks] {
  text-align: center;
  margin-bottom: 2rem;
}

.login-title[b-cf0vsm4zks] {
  font-size: 2.5rem;
  font-weight: 700;
  color: #2d3748;
  margin-bottom: 0.5rem;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.login-subtitle[b-cf0vsm4zks] {
  color: #718096;
  font-size: 1.1rem;
  margin-bottom: 0;
}

.login-form[b-cf0vsm4zks] {
  width: 100%;
}

.form-group[b-cf0vsm4zks] {
  margin-bottom: 1.5rem;
}

.form-label[b-cf0vsm4zks] {
  font-weight: 600;
  color: #2d3748;
  margin-bottom: 0.75rem;
  font-size: 0.95rem;
}

.form-control[b-cf0vsm4zks] {
  border: 2px solid #e2e8f0;
  border-radius: 12px;
  padding: 1rem 1.25rem;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  background-color: #f8fafc;
  width: 100%;
  min-width: 300px;
}

.form-control:focus[b-cf0vsm4zks] {
  border-color: #667eea;
  box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
  background-color: white;
}

.form-control-lg[b-cf0vsm4zks] {
  padding: 1.25rem 1.5rem;
  font-size: 1.2rem;
  min-width: 350px;
}

.btn-login[b-cf0vsm4zks] {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border: none;
  border-radius: 12px;
  padding: 1rem 2rem;
  font-size: 1.1rem;
  font-weight: 600;
  color: white;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.btn-login:hover[b-cf0vsm4zks] {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(102, 126, 234, 0.3);
  color: white;
}

.btn-login:active[b-cf0vsm4zks] {
  transform: translateY(0);
}

.btn-login:disabled[b-cf0vsm4zks] {
  opacity: 0.7;
  transform: none;
  cursor: not-allowed;
}

.form-check[b-cf0vsm4zks] {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.form-check-input[b-cf0vsm4zks] {
  width: 1.25rem;
  height: 1.25rem;
  border-radius: 6px;
  border: 2px solid #e2e8f0;
  background-color: #f8fafc;
}

.form-check-input:checked[b-cf0vsm4zks] {
  background-color: #667eea;
  border-color: #667eea;
}

.form-check-label[b-cf0vsm4zks] {
  color: #4a5568;
  font-weight: 500;
  cursor: pointer;
  user-select: none;
}

.forgot-password[b-cf0vsm4zks] {
  text-align: center;
  margin-top: 1.5rem;
}

.forgot-password a[b-cf0vsm4zks] {
  color: #667eea;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.forgot-password a:hover[b-cf0vsm4zks] {
  color: #764ba2;
  text-decoration: underline;
}

.alert[b-cf0vsm4zks] {
  border-radius: 12px;
  border: none;
  padding: 1rem 1.25rem;
  font-weight: 500;
}

.alert-danger[b-cf0vsm4zks] {
  background-color: #fed7d7;
  color: #c53030;
}

.alert-warning[b-cf0vsm4zks] {
  background-color: #fef5e7;
  color: #d69e2e;
}

/* Responsividade */
@media (max-width: 768px) {
  .login-page[b-cf0vsm4zks] {
    padding: 15px;
  }

  .login-card[b-cf0vsm4zks] {
    max-width: 95%;
    margin: 0 auto;
  }

  .login-title[b-cf0vsm4zks] {
    font-size: 2rem;
  }

  .login-subtitle[b-cf0vsm4zks] {
    font-size: 1rem;
  }

  .form-control[b-cf0vsm4zks] {
    min-width: auto;
  }

  .form-control-lg[b-cf0vsm4zks] {
    padding: 1rem 1.25rem;
    font-size: 1.1rem;
    min-width: auto;
  }

  .btn-login[b-cf0vsm4zks] {
    padding: 0.875rem 1.5rem;
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .login-page[b-cf0vsm4zks] {
    padding: 10px;
  }

  .login-title[b-cf0vsm4zks] {
    font-size: 1.75rem;
  }

  .login-card[b-cf0vsm4zks] {
    max-width: 98%;
    margin: 0 auto;
  }
}

/* Animações */
@keyframes fadeInUp-b-cf0vsm4zks {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.login-card[b-cf0vsm4zks] {
  animation: fadeInUp-b-cf0vsm4zks 0.6s ease-out;
}

/* Melhorias de acessibilidade */
.form-control:focus[b-cf0vsm4zks],
.btn-login:focus[b-cf0vsm4zks],
.form-check-input:focus[b-cf0vsm4zks] {
  outline: 2px solid #667eea;
  outline-offset: 2px;
}

/* Estados de loading */
.btn-login:disabled .spinner-border[b-cf0vsm4zks] {
  width: 1rem;
  height: 1rem;
  border-width: 2px;
}
/* _content/Repluggar.Web/Pages/Profile.razor.rz.scp.css */
.profile-page[b-4gxwqxzs96] {
  margin: 0 -1rem 0 -1rem;
  padding-top: 1rem;
}

.profile-header[b-4gxwqxzs96] {
  position: relative;
  margin-bottom: 2rem;
}

.profile-banner[b-4gxwqxzs96] {
  height: 120px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.profile-header-content[b-4gxwqxzs96] {
  display: flex;
  align-items: flex-end;
  margin-top: -70px;
  padding: 1.5rem 2rem;
  border-radius: 18px;
  background: #ffffff;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
  border: 1px solid rgba(148, 163, 184, 0.3);
}

.profile-picture-wrapper[b-4gxwqxzs96] {
  flex-shrink: 0;
  margin-right: 2rem;
}

.profile-picture-large[b-4gxwqxzs96] {
  width: 120px;
  height: 120px;
  border-radius: 8px; /* ?? ALTERADO: era 50% (circular), agora 8px (quadrado) */
  object-fit: cover;
  border: 4px solid white;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.profile-picture-placeholder[b-4gxwqxzs96] {
  border: 4px solid white;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  font-weight: bold;
}

.profile-header-info[b-4gxwqxzs96] {
  flex-grow: 1;
  color: #1f2933;
  padding-top: 0.25rem;
}

.profile-name[b-4gxwqxzs96] {
  font-size: 1.5rem;
  font-weight: 600;
  color: #0f172a;
  text-shadow: none;
  margin-bottom: 0.25rem;
}

.profile-header-info p[b-4gxwqxzs96],
.profile-header-info a[b-4gxwqxzs96],
.profile-header-info small[b-4gxwqxzs96] {
  color: #475569;
  text-shadow: none;
  margin-bottom: 0.25rem;
}

.profile-header-info a:hover[b-4gxwqxzs96] {
  color: #0f172a;
  text-decoration: underline;
}

@media (max-width: 768px) {
  .profile-banner[b-4gxwqxzs96] {
    height: 100px; /* ?? AJUSTADO para mobile */
  }

  .profile-header-content[b-4gxwqxzs96] {
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-top: -60px;
  }

  .profile-picture-wrapper[b-4gxwqxzs96] {
    margin-right: 0;
    margin-bottom: 1rem;
  }

  .profile-picture-large[b-4gxwqxzs96] {
    width: 90px;
    height: 90px;
  }

  .profile-name[b-4gxwqxzs96] {
    font-size: 1.25rem;
  }
}
/* _content/Repluggar.Web/Pages/Register.razor.rz.scp.css */
/* Estilos específicos para a página de registro */
/* Reutiliza os estilos da página de login para consistência */

/* Layout principal retrô */
.login-page[b-z6t3ergbc3] {
  min-height: 100vh;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px 0;
  position: relative;
}

/* Logo da rede social */
.logo-container[b-z6t3ergbc3] {
  text-align: center;
  margin-bottom: 2rem;
}

.logo-text[b-z6t3ergbc3] {
  font-size: 3rem;
  font-weight: 800;
  color: #2d3748;
  margin-bottom: 0.5rem;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.logo-subtitle[b-z6t3ergbc3] {
  color: #718096;
  font-size: 1.2rem;
  font-weight: 500;
  margin-bottom: 0;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.login-card[b-z6t3ergbc3] {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  min-width: 500px;
  max-width: 600px;
  width: 100%;
}

.login-card:hover[b-z6t3ergbc3] {
  transform: translateY(-5px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.login-header[b-z6t3ergbc3] {
  text-align: center;
  margin-bottom: 2rem;
}

.login-title[b-z6t3ergbc3] {
  font-size: 2.5rem;
  font-weight: 700;
  color: #2d3748;
  margin-bottom: 0.5rem;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.login-subtitle[b-z6t3ergbc3] {
  color: #718096;
  font-size: 1.1rem;
  margin-bottom: 0;
}

/* Estilos específicos para o formulário de registro */
.register-form[b-z6t3ergbc3] {
  width: 100%;
}

.register-form .form-group[b-z6t3ergbc3] {
  margin-bottom: 1.5rem;
}

.register-form .form-label[b-z6t3ergbc3] {
  font-weight: 600;
  color: #2d3748;
  margin-bottom: 0.75rem;
  font-size: 0.95rem;
}

.register-form .form-control[b-z6t3ergbc3] {
  border: 2px solid #e2e8f0;
  border-radius: 12px;
  padding: 1rem 1.25rem;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  background-color: #f8fafc;
  width: 100%;
  min-width: 300px;
}

.register-form .form-control:focus[b-z6t3ergbc3] {
  border-color: #667eea;
  box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
  background-color: white;
}

.register-form .form-control-lg[b-z6t3ergbc3] {
  padding: 1.25rem 1.5rem;
  font-size: 1.2rem;
  min-width: 350px;
}

.register-form .btn-register[b-z6t3ergbc3] {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border: none;
  border-radius: 12px;
  padding: 1rem 2rem;
  font-size: 1.1rem;
  font-weight: 600;
  color: white;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.register-form .btn-register:hover[b-z6t3ergbc3] {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(102, 126, 234, 0.3);
  color: white;
}

.register-form .btn-register:active[b-z6t3ergbc3] {
  transform: translateY(0);
}

.register-form .btn-register:disabled[b-z6t3ergbc3] {
  opacity: 0.7;
  transform: none;
  cursor: not-allowed;
}

.register-form .form-check[b-z6t3ergbc3] {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.register-form .form-check-input[b-z6t3ergbc3] {
  width: 1.25rem;
  height: 1.25rem;
  border-radius: 6px;
  border: 2px solid #e2e8f0;
  background-color: #f8fafc;
}

.register-form .form-check-input:checked[b-z6t3ergbc3] {
  background-color: #667eea;
  border-color: #667eea;
}

.register-form .form-check-label[b-z6t3ergbc3] {
  color: #4a5568;
  font-weight: 500;
  cursor: pointer;
  user-select: none;
}

.register-form .form-check-label a[b-z6t3ergbc3] {
  color: #667eea;
  text-decoration: none;
  font-weight: 600;
}

.register-form .form-check-label a:hover[b-z6t3ergbc3] {
  color: #764ba2;
  text-decoration: underline;
}

.register-links[b-z6t3ergbc3] {
  text-align: center;
  margin-top: 1.5rem;
}

.register-links a[b-z6t3ergbc3] {
  color: #667eea;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.register-links a:hover[b-z6t3ergbc3] {
  color: #764ba2;
  text-decoration: underline;
}

/* Responsividade específica para registro */
@media (max-width: 768px) {
  .login-card[b-z6t3ergbc3] {
    min-width: 90%;
    max-width: 95%;
  }

  .register-form .form-control[b-z6t3ergbc3] {
    min-width: 250px;
  }

  .register-form .form-control-lg[b-z6t3ergbc3] {
    padding: 1rem 1.25rem;
    font-size: 1.1rem;
    min-width: 280px;
  }

  .register-form .btn-register[b-z6t3ergbc3] {
    padding: 0.875rem 1.5rem;
    font-size: 1rem;
  }
}

/* Melhorias de acessibilidade */
.register-form .form-control:focus[b-z6t3ergbc3],
.register-form .btn-register:focus[b-z6t3ergbc3],
.register-form .form-check-input:focus[b-z6t3ergbc3] {
  outline: 2px solid #667eea;
  outline-offset: 2px;
}

/* Estados de loading */
.register-form .btn-register:disabled .spinner-border[b-z6t3ergbc3] {
  width: 1rem;
  height: 1rem;
  border-width: 2px;
}
