:root {
  --shadow-small: 0 1px 3px 0 rgba(0, 0, 0, 0.1),
    0 1px 2px 0 rgba(0, 0, 0, 0.06);
  --shadow-medium: 0 4px 6px -1px rgba(0, 0, 0, 0.1),
    0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-large: 0 10px 15px -3px rgba(0, 0, 0, 0.1),
    0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --color: #c7232f;
  --color2: #161d27;
  --color2-dark: #0f131a;
}

*,
*::before,
*::after {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  list-style: none;
  list-style-type: none;
  text-decoration: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

html {
  scroll-behavior: smooth;
  height: -webkit-fill-available;
}

body {
  width: 100vw;
  height: 100vh;
  font-family: futura ptt, helvetica neue, arial, sans-serif;
}

.login-contents-container {
  padding-top: 150px;
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;

}

.login-contents-container > ul {
  position: absolute;
  width: 400px;
  display: flex;
  flex-direction: column;
  list-style: none;
 
}

.login-contents-container ul > li {
  margin-top: 10px;
}
.log-in_title {
  text-align: center;
  font-size: large;
  font-weight: bolder;
  opacity: 0.7;
  margin-bottom: 10px;
}

.form form {
  display: flex;
  flex-direction: column;
}

.form form > input {
  padding: 5px 5px 5px 10px;
  outline: none;
}

.password_container > input{
  padding: 5px 5px 5px 10px;
  outline: none;
 width: 100%;
}
#showPass {
  display: inline-block;
  position: relative;
  left: 92%;
  bottom: 43px;
  cursor: pointer;
}

.form form > button {
  padding: 5px 15px 5px 15px;
  cursor: pointer;
  background-color: black;
  color: white;
  font-size: 0.9em;
}

.login-contents-container > ul .create-account {
  font-size: 0.9em;
  font-weight: bolder;
  opacity: 0.7;
  margin-bottom: 20px;
}


.login-contents-container > ul .create-account-link {
  padding: 5px 15px 5px 15px;
  cursor: pointer;
  background-color: black;
  display: flex;
  justify-content: center;
  margin-bottom: 10px;
}
.login-contents-container > ul .create-account-link > a {
  color: white;
  font-size: 0.9em;
  text-decoration: none;
}

.form form .form-child {
  margin-bottom: 20px;
}

.login-error-message {
  display: flex;
  align-items: center;
  justify-content: center;
}


/* Responsive phone*/

@media (max-width: 480px) {

  .login-contents-container > ul {
    width: 320px;

   
  }
  .go_to_home{
    font-size: 0.9em;
  }
}


@media (max-width: 375px) {

  .login-contents-container > ul {
    width: 250px;
    font-size: 0.9em;

   
  }
}


@media (max-width: 275px) {

  .login-contents-container > ul {
    width: 200px;
    font-size: 0.7em;

   
  }
}