* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

* {
  background-color: #0a0a0a;
}

body {
  margin: 0;
  padding: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    "Helvetica Neue", Arial, sans-serif;
  overflow-x: hidden;
}

.container-de-conteudo {
  display: flex;
  min-height: 100vh;
  width: 100%;
  align-items: stretch;
  justify-content: space-between;
}

.imagem-direita {
  width: 50%;
  height: 100vh;
  object-fit: cover;
  object-position: center 30%;
  margin: 0;
  order: 2;
  flex-shrink: 0;
}

.register-container {
  width: 50%;
  background-color: #0a0a0a;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 60px 80px;
  order: 1;
}

.register-container > * {
  width: 100%;
  max-width: 450px;
}

.welcome {
  color: white;
  margin-bottom: 5px;
}

.welcome h1 {
  margin: 0 0 5px 0;
  font-size: 36px;
  font-weight: 700;
  line-height: 1.2;
}

.message {
  color: rgb(140, 140, 140);
  margin-bottom: 25px;
}

.message p {
  margin: 0;
  font-size: 13px;
  font-weight: 400;
}

button {
  background-color: transparent;
  border: none;
  padding: 0;
  cursor: pointer;
}

.botoes {
  display: flex;
  gap: 15px;
  margin-bottom: 25px;
}

.github,
.google {
  flex: 1;
}

.github button,
.google button {
  width: 100%;
  height: 45px;
  border: 1px solid #2a2a2a;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

.github button i,
.google button i {
  font-size: 22px;
  color: #ffffff;
}

.github button:hover,
.google button:hover {
  background-color: #1a1a1a;
  border-color: #3a3a3a;
}

.linha-divisoria {
  width: 100%;
  height: 1px;
  background-color: #2a2a2a;
  margin: 25px 0;
  position: relative;
}

.linha-divisoria::after {
  content: "OR";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #0a0a0a;
  color: #666666;
  padding: 0 12px;
  font-size: 11px;
  font-weight: 500;
}

.register-form {
  width: 100%;
}

.register-form label {
  display: block;
  margin-bottom: 6px;
  color: #888888;
  font-size: 13px;
  font-weight: 500;
}

.register-form input[type="text"],
.register-form input[type="email"],
.register-form input[type="password"],
.register-form input[type="date"] {
  width: 100%;
  padding: 10px 12px;
  margin-bottom: 14px;
  border: 1px solid #2a2a2a;
  border-radius: 4px;
  background-color: #1a1a1a;
  color: #ffffff;
  font-size: 13px;
  transition: border-color 0.2s ease;
}

.register-form input:focus {
  outline: none;
  border-color: #3b82f6;
}

.password-hint {
  display: block;
  color: #666;
  font-size: 11px;
  margin-top: -10px;
  margin-bottom: 14px;
}

.forgot-password {
  display: block;
  text-align: right;
  margin-top: -8px;
  margin-bottom: 16px;
  color: #5694d8;
  text-decoration: none;
  font-size: 12px;
}

.forgot-password:hover {
  text-decoration: underline;
}

.checkbox-group {
  display: flex;
  align-items: flex-start;
  margin-bottom: 14px;
}

.checkbox-group.primeira {
  margin-top: 8px;
}

.checkbox-group label {
  color: #888888;
  font-size: 11px;
  font-weight: 400;
  line-height: 1.5;
  margin: 0;
}

.checkbox-group input[type="checkbox"] {
  margin-top: 2px;
  margin-right: 8px;
  appearance: none;
  width: 15px;
  height: 15px;
  border: 1.5px solid #3d3d3d;
  border-radius: 2px;
  background-color: #1a1a1a;
  cursor: pointer;
  flex-shrink: 0;
  position: relative;
}

.checkbox-group input[type="checkbox"]:checked {
  background-color: #3b82f6;
  border-color: #3b82f6;
}

.checkbox-group input[type="checkbox"]:checked::after {
  content: "✓";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  font-size: 11px;
  font-weight: bold;
}

.link-blue {
  color: #5694d8;
  text-decoration: none;
}

.link-blue:hover {
  text-decoration: underline;
}

.text-gray {
  color: #888888;
}

.signup-text {
  font-size: 12px;
  margin-top: 16px;
  margin-bottom: 18px;
  line-height: 1.6;
}

.signup-text .link-blue {
  font-weight: 500;
}

.register-button {
  width: 100%;
  padding: 11px 15px;
  background-color: #3b82f6;
  border: none;
  border-radius: 4px;
  color: #ffffff;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.2s ease;
  margin-top: 8px;
}

.register-button:hover {
  background-color: #5094f7;
}

.error-message {
  background-color: rgba(220, 38, 38, 0.1);
  border: 1px solid #dc2626;
  color: #ff5555;
  padding: 10px 15px;
  border-radius: 4px;
  font-size: 13px;
  margin-top: 10px;
  margin-bottom: 10px;
}

.input-error {
  border-color: #dc2626 !important;
  background-color: rgba(220, 38, 38, 0.05) !important;
}
