@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --orange: #ff8c00;
  --black: #000;
  --white: #fff;
  --gray-light: #f7f7f7;
  --gray-dark: #1a1a1a;
}

body {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  font-family: 'Poppins', sans-serif;
  background: linear-gradient(135deg, var(--orange), #ffae42);
}

.contenedor {
  width: 100%;
  max-width: 400px;
  background: var(--white);
  border-radius: 12px;
  padding: 30px 25px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}

.logo-titulo img {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  border: 3px solid var(--orange);
  margin-bottom: 10px;
}

h2 {
  color: var(--orange);
  font-size: 26px;
  margin-bottom: 10px;
  text-align: center;
}

.input-box {
  position: relative;
  width: 100%;
  margin-bottom: 15px;
}

.input-box input {
  width: 100%;
  padding: 12px 40px 12px 35px;
  border: 1px solid #ddd;
  border-radius: 8px;
  background: var(--gray-light);
  font-size: 15px;
  transition: all 0.3s ease;
}

.input-box input:focus {
  border-color: var(--orange);
  background: #fff;
  box-shadow: 0 0 8px rgba(255, 140, 0, 0.3);
}

.input-box i {
  position: absolute;
  top: 50%;
  left: 12px;
  transform: translateY(-50%);
  color: var(--orange);
  font-size: 16px;
}

.remenber-forgot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  font-size: 14px;
  margin-bottom: 10px;
  gap: 10px;
}

.remenber-forgot label {
  display: flex;
  align-items: center;
  gap: 5px;
  color: var(--gray-dark);
  cursor: pointer;
}

.remenber-forgot a {
  color: var(--orange);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.remenber-forgot a:hover {
  color: #e67600;
}

.submit {
  width: 100%;
  padding: 12px;
  border: none;
  border-radius: 8px;
  background: var(--orange);
  color: var(--white);
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s ease;
}

.submit:hover {
  background: #e67600;
}

.RegisterForm, .LoginForm {
  text-align: center;
  margin-top: 15px;
  gap: 10px;
}

.RegisterForm a, .LoginForm a {
  color: var(--orange);
  text-decoration: none;
  font-weight: 500;
}

/* Responsivo */
@media (max-width: 480px) {
  .contenedor {
    max-width: 90%;
    padding: 20px;
  }

  h2 {
    font-size: 22px;
  }

  .submit {
    font-size: 15px;
  }
}
