@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700&display=swap');

:root {
    --primary-color: white;
    --secondary-color: #ccc8bb;
    --primary-color-hover: #90b1ad;
    --secondary-color-hover: #ddd8c4;
    --font-size: 16px;
    --spacing: 10px;
  }
body {
  background-image: url("interface-SOHAUS.png");
  display: flex;
  justify-content: center;
  align-items: center;
  height: 98vh;
  font-family: 'Montserrat', sans-serif;
  background-repeat: no-repeat;
  background-color: #FFF5B7;
  background-size: contain;
  background-position: top;
  
}
h2{
    margin: 10px 0;
    color: white;
    text-align: center;
}
form{
    background-color: #a6a6a64f;
    backdrop-filter: blur(5px);
    border-radius: 10px;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 10px;
    gap: 20px;
    width: 90%;
}
:focus {
    outline: none;
}

input[type="text"] {
    font: 15px/24px "Montserrat", sans-serif;
    color: black;
    width: 100%;
    /* box-sizing: border-box; */
    letter-spacing: 1px;
}


.col-3 {
    width: 90%;
    margin: 10px 3%;
    position: relative;
}

.effect {
    border: none;
    padding: 4px 0;
    border-bottom: 1px solid #ccc;
    background-color: transparent;
}

.effect ~ .focus-border {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: 0.4s;
}
.effect:focus ~ .focus-border,
.has-content.effect ~ .focus-border {
    width: 100%;
    transition: 0.4s;
}
.effect ~ label {
    position: absolute;
    left: 0;
    width: 100%;
    top: 9px;
    color: white;
    transition: 0.3s;
    z-index: -1;
    letter-spacing: 0.5px;
}
.effect:focus ~ label,
.has-content.effect ~ label {
    top: -16px;
    font-size: 12px;
    color: var(--primary-color);
    transition: 0.3s;
}
button{
    width: 150px;
    height: 50px;
    border-radius: 10px;
    border: 1px solid white;
    background-color: transparent;
    backdrop-filter: blur(5px);
    color: white;
    font-size: 15px;
}

button:active{
    background-color: rgba(255, 255, 255, 0.459);
    color: black;
    cursor: pointer;
    border: 1px solid black;
}


/* HTML: <div class="loader"></div> */
.loader {
  width: 50px;
  aspect-ratio: 1;
  display: grid;
  border: 4px solid #0000;
  border-radius: 50%;
  border-right-color: var(--primary-color-hover);
  animation: l15 1s infinite linear;
}
.loader::before,
.loader::after {    
  content: "";
  grid-area: 1/1;
  margin: 2px;
  border: inherit;
  border-radius: 50%;
  animation: l15 2s infinite;
}
.loader::after {
  margin: 8px;
  animation-duration: 3s;
}
@keyframes l15{ 
  100%{transform: rotate(1turn)}
}

.loading-container{
    padding: 25px ;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 25px;
    backdrop-filter: blur(5px);
    border-radius: 5px;
    background-color: #a6a6a64f;
}