@import 'https://fonts.googleapis.com/css?family=Lato:100,100i,300,300i,400,400i,700,700i,900,900i';
@import url('https://fonts.googleapis.com/css?family=Montserrat:300,400,500,600,700&display=swap');

.modal {
      width: 100%;
      height: 100%;
      z-index: 2000;
      font-family: 'Lato', sans-serif;
      background-color: rgba(0, 0, 0, 0.5);
      position: absolute;
  }

.modal-inner {
    opacity: 1;
    position: absolute;
    width: 500px;
    height: 500px;
    padding: 50px;
    border-radius: 35px;
    overflow: hidden;
    top: calc(50% - 250px);
    left: calc(50%);
    z-index: 10;
    background-color: white;
}

.modal-click-out {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

.modal-header {
    width: auto;
    height: auto;
    padding: 30px 0;
    font-size: 32px;
    font-weight: 500;
    text-align: center;
}

.login-message,
.modal-field-label {
    color: black;
}

.modal-field-label,
.modal-field {
    width: 100%;
    margin-top: 20px;
    position: relative;
    font-family: 'Montserrat', sans-serif;
    float: left;
}

.modal-field {
    width: calc(100% - 30px);
    height: auto;
    padding: 15px;
}

.modal-field-label {
    text-transform: uppercase;
    line-height: 1em;
    font-size: 13px;
    font-weight: 600;
}

.login-error {

}

.modal-login-btn {
    width: 186px;
    height: 42px;
    text-align: center;
    font-size: 22px;
    font-weight: 500;
    border: 2px solid #231f20;
    border-radius: 15px;
    background: white;
    color: #231f20;
    cursor: pointer;
    line-height: 1em;
    margin: 32px 0 0;
    padding: 0;
    transition: .2s;
    position: relative;
    float: left;
}

.modal-login-btn:hover {
    background: #231f20;
    color: white;
}

.modal-login-btn-submit {
    margin-left: 56px;
}

.modal-login-btn:last-child {
    margin-left: 20px !important;
}

.modal-login-linkbtn {
    width: 186px;
    height: 42px;
    text-align: center;
    font-size: 22px;
    font-weight: 500;
    border: 2px solid #231f20;
    border-radius: 15px;
    background: white;
    color: #231f20;
    cursor: pointer;
    line-height: 2em;
    margin: 32px 0 0;
    padding: 0;
    transition: .2s;
    position: relative;
    float: left;
}

.modal-login-linkbtn:hover {
    background: #231f20;
    color: white;
}

.modal-login-linkbtn-submit {
    margin-left: 56px;
}

.modal-login-linkbtn:last-child {
    margin-left: 20px !important;
}
