@import url('https://fonts.googleapis.com/css2?family=Roboto&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Courgette&family=Sansita+Swashed:wght@300&display=swap');

@font-face {
    font-family: 'Dolce Vita';
    src: url('DolceVitaHeavy-Bold.woff2') format('woff2'),
        url('DolceVitaHeavy-Bold.woff') format('woff'),
        url('DolceVitaHeavy-Bold.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

*, div, p {
    font-family: 'Roboto', sans-serif;
    outline: none;
    -webkit-appearance:none;
    box-sizing: border-box;
}

input[type=checkbox] {
    -webkit-appearance:checkbox;
}

select {
    -webkit-appearance:select;
}

a {
    text-decoration: none;
}
.none {
    display: none;
}


body {
    background: whitesmoke;
    padding: 0;
    margin: 0;
}




nav {
    position: fixed;
    width: 100%;
    left: 0;
    right: 0;
    top: 0;
    padding: 20px;
    box-shadow: 0 0 4px rgba(0, 0, 0, 0.3);
    background: white;
    z-index: 100;
}

nav p {
    font-size: 40px;
    color: black;
    font-weight: bold;
    margin: 0;
    margin-left: 75px;
}



.content {
      display: block;
      margin: auto;
      margin-top: 20vh;
      max-width: 900px;
      width: 70%;
      text-align: left;
}



.content .login_form {
      width: 550px;
      margin-bottom: 40px;
}

@media screen and (max-width:750px) {
      .content {
            width: 90%;
      }
      .content .login_form {
            width: 100%;
      }
}

.double_input {
      display: flex;
      justify-content: space-between;
}

.double_input .input_text {
      width: 48%;
}

.input_text {
      width: 100%;
      padding: 8px;
      color: black;
      border: none;
      border-radius: 0;
      background: white;
      font-size: 17px;
      margin-bottom: 15px;
      box-shadow: 1px 1px 8px rgb(0 0 0 / 11%);
}


.btn_login {
      color: white;
      padding: 10px 15px;
      border: none;
      border-radius: 8px;
      background-color: #ff851c;
      font-size: 19px;
      cursor: pointer;
      transition: 0.1s;
}

.btn_login:hover {
      background-color: #d46b11;
      box-shadow: 1px 1px 8px rgb(0 0 0 / 11%);
}











/**/
