* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: 'Inter', sans-serif;
}

body {
  height: 100vh;
  background-color: #0238A4;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #333;
}

.login-box .container__title{
    width: 100%;
    text-align: center;
}

.login-box .container__title .title__three{
    color: var(--blue-color);
    width: 100%;
    text-align: center;
    font-size: 20px;
    margin-bottom: .5em;
    text-transform: uppercase;
}

.login-box .container__description{
    width: 100%;
    height: max-content;
}

.login-box .container__description .description{
    color: var(--grey-color);
    text-align: center;
    width: 100%;
    height: auto;
    padding-bottom: 1em;
}

.login-container {
  width: 100%;
  max-width: 400px;
  padding: 20px;
}

.login-container > img{
  border-radius: 10px;
}

.login-box {
  background-color: #ffffff;
  padding: 30px 25px;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.form-group {
  margin-bottom: 20px;
}

.form-group input {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 14px;
  transition: border-color 0.3s;
}

.form-group input:focus {
  border-color: #0a3d62;
  outline: none;
}

.button__green{
  display: block;
  margin: auto
}

.footer-text {
  margin-top: 20px;
  font-size: 12px;
  text-align: center;
  color: #888;
}

.login-logo {
  display: block;
  margin: 0 auto 20px auto;
  width: 150px;
  height: auto;
  
  /* Efecto 3D con sombra */
  filter: drop-shadow(0px 10px 15px rgba(0, 0, 0, 0.3));
  transform: perspective(800px) rotateX(5deg) rotateY(-5deg);
  transition: transform 0.4s ease, filter 0.4s ease;
}

/* Al pasar el mouse (hover), se intensifica el efecto */
.login-logo:hover {
  transform: perspective(800px) rotateX(0deg) rotateY(0deg) scale(1.05);
  filter: drop-shadow(0px 15px 25px rgba(0, 0, 0, 0.5));
}

/* ==========================================================
   NUEVO: Estilo para iconos dentro de los inputs
   ========================================================== */
.input-icon {
  position: relative;
  display: flex;
  align-items: center;
}

.icon-left {
  position: absolute;
  left: 12px;
  width: 18px;
  height: 18px;
  opacity: 0.8;
}

.icon-right {
  position: absolute;
  right: 12px;
  width: 20px;
  height: 20px;
  opacity: 0.8;
  cursor: pointer;
}

.input-icon input {
  width: 100%;
  padding: 10px 38px; /* espacio a los lados para los íconos */
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 14px;
  transition: border-color 0.3s;
}

.input-icon input:focus {
  border-color: #0a3d62;
  outline: none;
}

.icon-left:hover,
.icon-right:hover {
  opacity: 1;
  transform: scale(1.1);
  transition: all 0.2s ease;
}
.icon-right {
  position: absolute;
  right: 12px;
  width: 20px;
  height: 20px;
  opacity: 0.7;
  cursor: pointer;
  transition: all 0.2s ease;
}

.icon-right:hover {
  opacity: 1;
  transform: scale(1.1);
  filter: drop-shadow(0px 1px 2px rgba(0, 0, 0, 0.3));
}