body{
  font-size: 62.5%;
}
.error{
  color: red;
  font-size: 12px;
  margin-left: 10px;
}
.top-bar{
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 50px;
  height: 60px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  background: #f0efef;
}
.top-bar .left a{
  font-size: 20px;
  color: #000;
  text-decoration: none;
  font-weight: bold;
}
.top-bar .left a span{
  color: #ff9907;
}

.register{
    padding: 0 10%;
    width: 100%;
    height: calc(100vh - 60px);
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: space-between;
}
.register .image{
    flex-basis:50%;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    background: #56a0fa;
}
.register .form{
    padding: 10px;
    flex-basis: 50%;
    flex-direction: column;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    background: #f9eefe;
}
.form-2-wrapper h2{
  font-size: 30px;
}
.login-with-google-btn {
    transition: background-color .3s, box-shadow .3s;
    padding: 12px 16px 12px 42px;
    width: 100%;
    border: none;
    border-radius: 3px;
    box-shadow: 0 0 1px rgba(0, 0, 0);
    color: #757575;
    font-size: 14px;
    font-weight: 500;
    font-family: -apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen,Ubuntu,Cantarell,"Fira Sans","Droid Sans","Helvetica Neue",sans-serif;
    background-image: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTgiIGhlaWdodD0iMTgiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGcgZmlsbD0ibm9uZSIgZmlsbC1ydWxlPSJldmVub2RkIj48cGF0aCBkPSJNMTcuNiA5LjJsLS4xLTEuOEg5djMuNGg0LjhDMTMuNiAxMiAxMyAxMyAxMiAxMy42djIuMmgzYTguOCA4LjggMCAwIDAgMi42LTYuNnoiIGZpbGw9IiM0Mjg1RjQiIGZpbGwtcnVsZT0ibm9uemVybyIvPjxwYXRoIGQ9Ik05IDE4YzIuNCAwIDQuNS0uOCA2LTIuMmwtMy0yLjJhNS40IDUuNCAwIDAgMS04LTIuOUgxVjEzYTkgOSAwIDAgMCA4IDV6IiBmaWxsPSIjMzRBODUzIiBmaWxsLXJ1bGU9Im5vbnplcm8iLz48cGF0aCBkPSJNNCAxMC43YTUuNCA1LjQgMCAwIDEgMC0zLjRWNUgxYTkgOSAwIDAgMCAwIDhsMy0yLjN6IiBmaWxsPSIjRkJCQzA1IiBmaWxsLXJ1bGU9Im5vbnplcm8iLz48cGF0aCBkPSJNOSAzLjZjMS4zIDAgMi41LjQgMy40IDEuM0wxNSAyLjNBOSA5IDAgMCAwIDEgNWwzIDIuNGE1LjQgNS40IDAgMCAxIDUtMy43eiIgZmlsbD0iI0VBNDMzNSIgZmlsbC1ydWxlPSJub256ZXJvIi8+PHBhdGggZD0iTTAgMGgxOHYxOEgweiIvPjwvZz48L3N2Zz4=);
    background-color: white;
    background-repeat: no-repeat;
    background-position: 12px 11px;
    cursor: pointer;
  }
  .form-2-wrapper {
    width: 380px;
    background: #ffffff;
    padding: 20px 20px;
    border-radius: 8px;
    box-shadow: 0 0 2px #999;
}
input.form-control{
    font-size: 14px;
    width: 100%;
    padding: 13px;
    border: none;
    border: 2px solid #405c7cb8;
    border-radius: 30px;
    background-color: transparent;
    font-family: Arial, Helvetica, sans-serif;
}
.form input:focus{
  box-shadow: 0 0 1px #ff9907;
}
button.login-btn{
    background: #ff9907;
    color: #fff;
    border: none;
    padding: 10px;
}
.register-test a{
    color: #000;
}

@media (max-width:900px){
  body{
    font-size: 55%;
  }
  .register{
    height: 100%;
  }
  .register .image{
    flex-basis: 100%;
    width: 100%;
  }
  .register .form{
    width: 100%;
    flex-basis: 100%;
  }
  .form-2-wrapper h2{
    font-size: 20px;
  }
}

@media (max-width:550px){
  body{
    font-size: 45%;
  }
  .top-bar{
    padding: 0 3%;
  }
  .register{
    padding: 30px 3%;
    position: relative;
  }
  .register .form{
    position: absolute;
    top: 40px;
    left: 0;
    background-color: transparent;
  }
  .form-2-wrapper{
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(4px);
  }
  .form :is(input,input:focus){
    color: #111;
    background: #fff;
  }
  .form input::placeholder{
    color: #333;
  }
  .top-bar .left a{
    font-size: 20px;
  }
  .form-2-wrapper {
    width: 300px;
}
}