<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.input {
    display: block;
    margin-left: auto;
    font-family: monospace;
    max-width:100%;
    outline: none;
    border: 1px solid #dadada;
    padding: 10px;
    border-radius: 5px;
    background-color: #f3f7fe;
    transition: .3s;
    color: #3b82f6;
    margin-right: auto;
    width:300px;
}

.input::placeholder {
    color: #3b82f6;
}

.input:focus {
    border: 1px solid #3b82f6;
    box-shadow: 0 0 0 5px #3b83f65f
}

.card {
    display:flex;
    /*Center the card*/
    margin-left: auto;
    margin-right: auto;
    margin-top: 5%;
    margin-bottom: 2%;
    padding: 30px;
    align-content: center;
    width: 50%;
    height: auto;
    background: rgb(255, 255, 255);
    border-radius: 0.4em;
    box-shadow: 0.3em 0.3em 0.7em #00000015;
    transition: border 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: rgb(250, 250, 250) 0.2em solid;
    justify-content: center;
}

.card:hover {
    border: #006fff 0.2em solid;
}

.button {
    padding: 1.3em 3em;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    font-weight: 500;
    color: #000;
    background-color: #fff;
    border: none;
    border-radius: 45px;
    box-shadow: 0px 8px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease 0s;
    cursor: pointer;
    outline: none;
    margin-left: auto;
    margin-right: auto;
    margin-top: 25px;
    display: block;
}

.button:hover {
    background-color: #23c483;
    box-shadow: 0px 15px 20px rgba(46, 229, 157, 0.4);
    color: #fff;
    transform: translateY(-7px);
}

.button:active {
    transform: translateY(-1px);
}

#myPopup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}

#myPopup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}

#popupContent {
    background-color: #fff;
    margin: 10% auto;
    padding: 20px;
    max-width: 350px;
    text-align: center;
    border-radius: 5px;
    box-shadow: 0.3em 0.3em 0.7em #00000015;
}

#closePopup {
    margin-top: 20px;
}

#myLink {
    position: relative;
    /* left: 45%; */
    display: block;
    margin: 0 auto;
    width: fit-content;
    font-family: monospace;
    outline: none;
    padding: 10px;
    border-radius: 45px;
    transition: .3s;
    color: #000;
    text-align: center;
}

#myLink:hover {
    background-color: #23c483;
    color: #fff;
    transform: translateY(-7px);
}

#myLink:active {
    transform: translateY(-1px);
}

.inputBox {
    position: relative;
    /*center the div*/
    margin-left: auto;
    margin-right: auto;
    margin-top: 50px;
    margin-bottom: 50px;
    width: 250px;
  }
  
  .inputBox input {
    width: 100%;
    padding: 10px;
    outline: none;
    border: none;
    color: #000;
    font-size: 1em;
    background: transparent;
    border-left: 2px solid #000;
    border-bottom: 2px solid #000;
    transition: 0.1s;
    border-bottom-left-radius: 8px;
  }
  
  .inputBox span {
    margin-top: 5px;
    position: absolute;
    left: 0;
    transform: translateY(-4px);
    margin-left: 10px;
    padding: 10px;
    pointer-events: none;
    font-size: 12px;
    color: #000;
    text-transform: uppercase;
    transition: 0.5s;
    letter-spacing: 3px;
    border-radius: 8px;
  }
  
  .inputBox input:valid~span,
  .inputBox input:focus~span {
    transform: translateX(113px) translateY(-15px);
    font-size: 0.8em;
    padding: 5px 10px;
    background: #000;
    letter-spacing: 0.2em;
    color: #fff;
    border: 2px;
  }
  
  .inputBox input:valid,
  .inputBox input:focus {
    border: 2px solid #000;
    border-radius: 8px;
  }

  .login {
    /* center text */
    text-align: center;
    color: #000;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: block;
    font-weight: bold;
    font-size: x-large;
  }

  .link {
    position: relative;
    text-decoration: none;
    color: #4682B4;
    cursor: pointer;
    padding-bottom: 2px;
  }

  .title{
    margin-top: 8%;
    /*center the div*/
    text-align: center;
    font-size: 2.5rem;
    line-height: 2rem;
    font-weight: 700;
  }

  .subtitle{
    margin-top: 15px;
    text-align: center;
    font-size: 1.2rem;
    line-height: 2rem;
    font-weight: 700;
  }
  
  .link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 3px;
    background-color: #4682B4;
    transition: width 0.3s ease;
  }
  
  .link:hover {
    color: #4682B4;
  }
  
  .link:hover::after {
    width: 100%;
  }</pre></body></html>