* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

body {
  min-height: 100vh;
  background: radial-gradient(circle, #76217a, #401a47);
  display: flex;
  justify-content: center;
  align-items: center;
}

.container {
  width: 900px;
  height: 450px;
}

.card {
  width: 100%;
  height: 100%;
  display: flex;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 0 40px rgba(49, 12, 47, 0.781);
}

/* LADO ESQUERDO */
.left {
  width: 45%;
  background: #d0b00e;
  padding: 50px;
  color: #620059;
}

.left h2 {
  margin-bottom: 40px;
}

.input-box {
  position: relative;
  margin-bottom: 30px;
}

.input-box input {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid #48065c86;
  padding: 10px 0;
  color: #fff;
  outline: none;
}

.input-box label {
  position: absolute;
  top: 10px;
  left: 0;
  color: #670974;
  font-size: 14px;
  pointer-events: none;
  transition: 0.3s;
}

.input-box input:focus + label,
.input-box input:valid + label {
  top: -10px;
  font-size: 12px;
  color: #57055d;
}

button {
  width: 100%;
  padding: 12px;
  border: none;
  border-radius: 30px;
  background: linear-gradient(45deg, #5d1552bd, #6c3883);
  color: #fff;
  font-size: 16px;
  cursor: pointer;
  transition: 0.3s ease;
}

button:hover {
  opacity: 0.9;
}

/* LINKS BONITOS */
.links-acesso {
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.links-acesso p {
  margin: 0;
  font-size: 14px;
  color: #5a005f;
  line-height: 1.5;
}

.links-acesso a {
  color: #4b0055;
  font-weight: 700;
  text-decoration: none;
  position: relative;
  transition: color 0.3s ease;
}

.links-acesso a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #6c3883, #d4af37);
  transition: width 0.3s ease;
}

.links-acesso a:hover {
  color: #2d0033;
}

.links-acesso a:hover::after {
  width: 100%;
}

/* LADO DIREITO */
.right {
  width: 55%;
  background: linear-gradient(135deg, #6d1b7b, #5d0055);
  color: #d0b00e;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  position: relative;
}

.right h1 {
  font-size: 48px;
  margin-bottom: 20px;
}

.right p {
  width: 70%;
  opacity: 0.9;
}

/* ÍCONES NO CANTO */
.social-right {
  position: absolute;
  bottom: 25px;
  right: 25px;
  display: flex;
  gap: 12px;
}

.icon-social {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  background: rgba(255, 255, 255, 0.08);
  color: white;
  backdrop-filter: blur(6px);
  transition: 0.3s ease;
}

/* SVG tamanho */
.icon-social svg {
  width: 20px;
  height: 20px;
}

/* WHATSAPP */
.icon-social:first-child:hover {
  transform: scale(1.1);
  background: #25D366;
  box-shadow: 0 0 15px #25D366;
}

/* INSTAGRAM */
.icon-social:last-child:hover {
  transform: scale(1.1);
  background: radial-gradient(circle at 30% 107%,
    #fdf497 0%,
    #fdf497 5%,
    #fd5949 45%,
    #d6249f 60%,
    #285AEB 90%);
  box-shadow: 0 0 15px rgba(214, 36, 159, 0.6);
}

.senha-box {
  position: relative;
}

.senha-box input {
  padding-right: 45px;
}

.toggle-senha {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-35%);
  background: transparent;
  border: none;
  padding: 0;
  width: 28px;
  height: 28px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: none;
}

.toggle-senha:hover {
  opacity: 1;
  background: transparent;
}

.toggle-senha svg {
  width: 20px;
  height: 20px;
  color: #5a005f;
  transition: 0.3s ease;
}

.toggle-senha:hover svg {
  color: #2d0033;
}
