.container-modal-login {
  position: relative;
}
.arrow-down-login {
  margin-top: 5px;
}

.triangle-login {
  display: none;
  position: absolute;
  rotate: 180deg;
  top: -13px;
  left: 48%;
}

.modal-user-login {
  display: none;
  position: absolute;
  height: fit-content;
  z-index: 22;
  padding: 15px 0;
  width: fit-content;
  border-radius: 4px;
  top: 130%;
  box-shadow: 0px 0px 2px 0px rgba(0, 0, 0, 0.3);
}

.login-header {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 20px;
  padding: 12px 0 15px 0;
}

.login-header h2 {
  width: 100%;
  text-align: center;
  font-size: 20px;
  margin: 0;
}

.login-header h5 {
  width: 100%;
  text-align: center;
  margin-bottom: 8px;
  font-size: 17px;
}

.form-vertical {
  width: 320px;
  padding: 0 25px;
  margin: 0 auto;
}

#CustomerPassword {
  border: 1px solid #e4e4e4;
}

#CustomerPassword:focus {
  border: 3px solid #040404;
}

#CustomerEmail {
  border: 1px solid #e4e4e4;
}

#CustomerEmail:focus {
  border: 3px solid #040404;
}

.form-vertical form input::placeholder {
  font-size: 17px;
}

.form-vertical form .text-center .login-submit {
  text-transform: capitalize;
  width: 100%;
  height: 55px;
  margin: 0 0 15px 0;
  border-radius: 7px;
  border: none;
}

.user-login-register {
  font-size: 15px;
  font-weight: normal;
  cursor: auto;
}

.user-login-register a {
  font-size: 15px;
  font-weight: normal;
}

.user-login-register a:hover {
  text-decoration: underline;
}

.text-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

.container-user-logged {
  width: 195px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}

.container-user-logged a {
  width: 100%;
  padding: 0 25px;
  font-size: 17px;
  font-weight: normal;
  width: 100%;
  height: 35px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.show-login {
  display: block;
}

@media (max-width: 1001px) {
  .modal-user-login {
    top: 25px;
  }

  .container-icon-user {
    position: relative;
  }

  .triangle-login {
    position: absolute;
    rotate: 180deg;
    top: 35px;
    left: 0;
  }

  .user-login-register {
    display: inline-flex;
    gap: 5px;
  }

  .user-login-register a {
    display: contents;
  }
}

@media (max-width: 540px) {
  .container-user-logged {
    width: 100%;
  }
  .modal-user-login {
    width: 100vw;
  }
}
