@font-face {
  font-family: font;
  src: url("../fonts/font.woff"); }
@font-face {
  font-family: font2;
  src: url("../fonts/font.woff2"); }
* {
  font-family: font;
  font-size: 16px;
  margin: 0;
  padding: 0;
  box-sizing: border-box; }

html, body {
  height: 100%;
  width: 100%; }

body {
  background-image: url("../bg-cloud.png");
  background-position: bottom;
  background-size: fit;
  background-repeat: no-repeat;
  background-color: whitesmoke; }

#main {
  height: 100%;
  width: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: column; }

#login-form {
  padding-top: 5%; }
  #login-form button {
    width: 200px;
    align-self: center;
    margin-top: 1rem;
    border: 1px solid #e2e2e2;
    border-radius: 3px;
    padding: 8px;
    background-color: white;
    cursor: pointer;
    outline: none;
    color: #69c4da;
    font-weight: bold;
    box-shadow: 0 1px 0 #e2e2e2; }
    #login-form button:hover {
      background-color: whitesmoke; }
  #login-form .input {
    width: 100%;
    align-items: start; }
    #login-form .input label {
      font-size: 1.2rem;
      padding-top: 0.5rem;
      font-size: 14px;
      color: #3e3e3c; }
    #login-form .input input {
      width: 100%;
      border: 1px solid #bbbbbb;
      border-radius: 3px;
      padding: 8px 12px;
      transition: box-shadow 0.2s;
      transition: border-color 0.2s;
      font-size: 15px; }
    #login-form .input input:focus {
      border: 1px solid #bbbbbb;
      border-radius: 3px;
      box-shadow: 0 0 3px #69c4da;
      outline: none;
      transition: box-shadow 0.2s;
      transition: border-color 0.2s;
      border-color: #69c4da; }

#login-form, .input {
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-direction: column; }

/*# sourceMappingURL=style-login.css.map */
