#loginBig{
    height: 90vh;
    width: 100vw;
    display: flex;
    justify-content: center;
    align-items: center;
    }
    
    #loginSmall{
      width: 80vw;
      height: 40vw;
      border-radius: 3%;
      display: flex;
      box-shadow: 0px 0px 100px 50px #5b3a29;
    }
    
    .loginSection:first-child{
      width: 60%;
      background-image: url("../images/sections/login.jpg");
      background-repeat: no-repeat;
      background-size: cover;
      height: 100%;
    }
    
    .loginSection:last-child{
      width: 40%;
      height: 100%;
      margin: 0;
      background-color: #493830;
    }
    
    #login > div > h2{
      font-size: 3em;
    }
    
    #login{
    width: 100%;
    height: 100%;
    }
    
    #login .parts{
    height: 33.33%;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    
    }
    
    .parts:nth-child(3){
      display: flex;
    }
    
    .parts:nth-child(3) div{
      width: 50%;
      height: 100%;
      display: flex;
      justify-content: center;
      align-items: center;
      padding: 0 5%;
    }
    
    .parts button{
      width: 50%;
      height: 20%;
      background-color: white;
      text-align: center;
      border: 1px solid aliceblue;
    }
    
    #login > div:nth-child(2){
      flex-direction: column;
    }
    
    input[type="text"], input[type="password"] {
      width: 100%;
      padding: 12px 20px;
      margin: 0;
      display: inline-block;
      border: 1px solid #ccc;
      box-sizing: border-box;
      height: 50%;
      background-color: white;
      text-align: start;
    }
    
    .user-box {
      padding: 0% 5%;
      position: relative;
      height: 50%;
      display: flex;
      justify-content: center;
      align-items: center;
      width: 100%;
    }
    
    .user-box > label {
      position: absolute;
      top: 50%;
      left: 5%;
      transform: translateY(-50%);
      pointer-events: none;
      transition: 0.3s ease-out;
      color: #000;
      padding: 12px 20px;
      font-style: normal;
      font-size: large;
      transition: linear 0.5s;
    }
    
    label {
      display: flex;
      align-items: center;
    }
    
    label.active {
      color: transparent; 
      transition: linear 0.5s;
    }

    @media screen and (max-width: 700px) {

        .loginSection:first-child{
            width: 100%;
            height: 60%;
            border-radius: 15px 15px 0px 0px;
        }

        .loginSection:last-child{
            width: 100%;
            border-radius: 0px 0px 15px 15px;
        }

        #loginSmall{
            height: 70vh;
            flex-direction: column;
            box-shadow: 0px 0px 0px 15px #ffe4c4, 0px 0px 0px 30px #493830;
        }
    }