body {
    background: skyblue;
}
.main-container {
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: 0;
}
.iti{
    width: 100%;
}
div.iti__selected-flag{
    height: 36px;
}
.container {
    background: #fff;
    border-radius: 5px;
    padding: 20px;
    max-width: 800px;
}

#logoImage{
    max-width: 100%;
    max-height: 100%;
}
#logoImageBox{
    width: 100%;
    height: 56px;
    margin-bottom: 1rem;
}

.primary-button {
  cursor: pointer;
  color: #fff;
  background-color: #da1d53;
}

.primary-button:hover {
  color: #fff;
  background-color: #a70734;
}

.accent-button {
    cursor: pointer;
    color: #DA1D52;
}

.accent-button:hover {
    color: #a70734;
}

.form-control {
  border-color: #cacaca !important;
  background-color: #eee;
}

.form-control.success{
  border-right: 5px solid green !important;
}

.form-control.invalid{
  border-right: 5px solid red !important;
}

label.invalid {
  margin-bottom: 0;
  color: red;
  font-size: 13px;
}

.form-control:focus {
  box-shadow: none;
  background-color: #eee;
}

.invisible {
    visibility: hidden;
}

.hidden {
    display: none;
}

@media screen and (max-width: 799px) {
    body {
        background: #ffffff;
    }
    .main-container{
        display: block;
    }
}

.error-message{
    color: red;
}

.flex-center {
    display: flex;
    align-items: center;
    justify-content: center;
}

.spinning-button .loadSpinner {
    display: none;
}

.spinning-button.spinning .loadSpinner {
    display: block;
}

