* {
    font-family: "Poppins", sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box; 
}

body{
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh; 
  background-image: url('../img/background-login.jpg');
  background-size: cover;  
  background-position: center;
}

/* Logo */
.nav-logo img {
  width: 35px;
}

.nav-title h3{
  color: var(--black-color);
  font-size: 18px;
  font-weight: 600;
  margin-top: 0;
}

.nav-title span {
  font-weight: 500;
  font-size: 10px;
  letter-spacing: 17px;
  font-family: Arial, Helvetica, sans-serif;
  margin-left: 10px;
}

.nav-logo {
  text-align: center;
}
/* / Logo */

.body-login .login-box {
  position: relative;
  width: 400px;
  height: 500px;
  background: transparent;
  border-radius: 10px;
  border: 2px solid rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(15px);
  display: flex;
  justify-content: center;
  align-items: center;
}

.login-box .input-box {
  position: relative;
  width: 310px;
  margin: 30px 0;
  border-bottom: 2px solid var(--secondary-color);
}

.login-box .input-box label {
  position: absolute;
  top: 50%;
  left: 5px;
  transform: translateY(-50%);
  font-size: 1rem;
  color: var(--secondary-color-text);
  pointer-events: none;
  transition: .5s;
}

.login-box .input-box input:focus~label,
.login-box .input-box input:valid~label {
  top: -5px;
}

.login-box .input-box input {
  width: 100%;
  height: 50px;
  background: transparent;
  border: none;
  outline: none;
  font-size: 1rem;
  color: var(--secondary-color-text);
  padding: 0 35px 0 5px;
}

.login-box .select-box select {
  margin-top: 1rem;
  padding: 0 16px;
  width: 100%;
  height: 50px;
  border: none;
  background: var(--secondary-color);
  font-size: 1rem;
  border-radius: 3px;
  color: var(--primary-color-text);
  cursor: pointer;
}

.login-box .select-box select:hover{
  color: var(--primary-color-text);
  border-radius: 3px;
  transition: 0.4s;
}

.login-box .input-box .icon {
  position: absolute;
  right: 8px;
  color: var(--secondary-color-text);
  font-size: 1.2rem;
  line-height: 57px;
}

.login-box .forgot-password {
  margin: -15px 0 15px;
  font-size: .9rem;
  text-align: right;
}

.login-box .forgot-password a {
  color: var(--secondary-color-text);
  text-decoration: none;
  font-weight: 600;
}

.login-box .forgot-password a:hover {
  text-decoration: underline;
}

.login-box button {
  width: 100%;
  height: 40px;
  background: var(--secondary-color-text);
  border: solid 1px transparent;
  outline: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 1rem;
  color: var(--primary-color-text);
  font-weight: 600;
}

.login-box button:hover {
  color: var(--secondary-color-text);
  font-weight: 600;
  border: 2px solid var(--secondary-color); 
  background: transparent;
  transition: .1s;
}

@media (max-width: 400px) {
  body .login-box {
    width: 100% !important;
    height: 100vh !important;
    border: none !important;
    border-radius: 0;
  }
}