/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Ubuntu", sans-serif;
}

body {
  background: #333;
  background-size: cover;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;
}

/* Container */
.login-container {
  display: flex;
  gap: 50px;
  align-items: center;
  justify-content: center;
}

/* Mascote */
.login-left img {
  max-width: 350px;
  height: auto;
}

/* Box de login */
.login-box {
  background: rgba(85, 85, 85, 0.95);
  padding: 40px;
  border-radius: 20px;
  width: 320px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.login-box h2 {
  color: #f9c513;
  text-align: center;
  margin-bottom: 10px;
}

/* Inputs */
.input-group {
  position: relative;
}

.input-group input {
  width: 100%;
  padding: 12px 40px 12px 15px;
  border: 2px solid #f9c513;
  border-radius: 25px;
  background: transparent;
  color: #fff;
  font-size: 14px;
}

.input-group input::placeholder {
  color: #aaa;
}

.input-group .icon {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  color: #f9c513;
  font-size: 16px;
}

/* Botão */
.btn-login {
  background: #f9c513;
  color: #333;
  border: none;
  padding: 12px;
  border-radius: 25px;
  font-weight: bold;
  font-size: 15px;
  cursor: pointer;
  transition: background 0.3s;
}

.btn-login:hover {
  background: #ffc933;
}

/* Opções */
.options {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  margin-top: 5px;
}

.options a {
  color: #f9c513;
  text-decoration: none;
}

.options a:hover {
  text-decoration: underline;
}

/* Responsivo */
@media (max-width: 768px) {
  .login-container {
    flex-direction: column;
    gap: 20px;
  }
  
  .login-left img {
    max-width: 250px;
  }
}
