* {
  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;
}

.container-de-conteudo::after {
  content: "";
  display: table;
  clear: both;
}

@media screen and (max-width: 600px) {
  .imagem-direita {
    width: 100%;
    float: none;
    margin: 15px 0;
    display: block;
  }
}

.login-container {
  width: 50%;
  background-color: #0a0a0a;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 60px 80px;
  order: 1;
}

.login-content {
  width: 100%;
  max-width: 450px;
}

.login-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;
  transition: opacity 0.2s;
}
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;
}

button:hover {
  opacity: 0.9;
}

.botoes {
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  gap: 12px;
  margin-bottom: 20px;
}

.linha-divisoria {
  background-color: rgb(60, 60, 60);
  width: 100%;
  height: 1px;
  border-radius: 0;
  margin: 18px 0 20px 0;
}

.login-form {
  display: flex;
  flex-direction: column;
}

.login-form label {
  margin-top: 16px;
  margin-bottom: 6px;
  font-size: 13px;
  font-weight: 600;
  color: #c8c8c8;
}

.login-form input {
  background-color: #1a1a1a;
  border: 1px solid #2d2d2d;
  border-radius: 4px;
  padding: 11px 12px;
  font-size: 14px;
  color: #ffffff;
  outline: none;
  width: 100%;
  box-sizing: border-box;
  transition: border-color 0.2s;
}

.login-form input::placeholder {
  color: #5a5a5a;
}

.login-form input:focus {
  border-color: #4a90e2;
}

.forgot-password {
  margin-top: 8px;
  text-align: left;
  color: #5694d8;
  text-decoration: none;
  font-size: 12px;
  display: inline-block;
}

.forgot-password:hover {
  text-decoration: underline;
}

.checkbox-group {
  display: flex;
  align-items: flex-start;
  margin-bottom: 12px;
  font-size: 12px;
  line-height: 1.5;
  color: #a8a8a8;
}

.checkbox-group label {
  margin: 0;
  font-weight: 400;
  color: #a8a8a8;
}

.primeira {
  margin-top: 18px;
}

.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;
}

.login-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;
}

.login-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;
}
