* {
    box-sizing: border-box;
    font-family: Montserrat;
}

html {
    font-size: 16px;
}

body {
    margin: 0;
    background: no-repeat url('/images/all-ways-background.png');
    background-size: cover;
}

.page-wrap {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100vw;
    height: 100vh;
}

.content {
    min-height: 60vh;
    min-width: 80rem;
    display: flex;
    box-shadow: #333131d1 20px 25px 6px 6px;
}

.content > * {
    flex: 1;
}

.copy {
    font-size: 2.3rem;
    color: #21386b;
}

.spacer {
    flex: 1 1;
}

.pictures {
    padding: 2rem 0;
    background: #fff;
    display: flex;
    align-content: center;
    justify-content: center;
}

.pictures > div {
    flex: 1 1 100%;
    text-align: center;
}

.inputs-wrapper {
    background: #21386b;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-around;
}

.login-form {
    flex: 2 2 60%;
    padding: 3rem 0.5rem;
    width: 25rem;
    display: flex;
    flex-wrap: wrap;
    margin: 0 auto;
}
.register-form.login-form {
    justify-content: center;
    width: auto;
}
.form-content {
    display: grid;
    justify-content: center;
    color: white;
    width: 75%;
}

.form-content label {
    font-weight: 300;
    margin: 0.75rem;
    font-size: 0.9rem;
}

.pre-populated-data {
    border-bottom: 1px #647497 solid;
    font-weight: 300;
    padding-bottom: 1rem;
}

.login-form input {
    background-color: #647497;
    padding-left: 0.3rem;
}

::placeholder,
.input-sizing {
    color: #fff;
}

.input-sizing {
    border-radius: 3px;
    border: none;
    height: 2.5rem;
    margin: 0.75rem;
    width: 100%;
}

.login-with {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #fff;
    transition: all 300ms ease-in;
    text-decoration: none;
    color: #21386b;
    font-weight: 500;
    padding-left: 0.6rem;
    font-size: 0.9rem;
}

.sign-in-header {
    flex: 1 1;
    padding: 2rem;
}

.sign-in {
    color: #d8d8d8;
    font-size: 1.8rem;
    border-bottom: 2px solid #00b5ed;
}
.login {
    background-color: #00b5ed;
    border-radius: 2rem;
    color: #fff;
    width: 10rem;
    font-size: 1rem;
    font-weight: 500;
}
.hover {
    cursor: pointer;
}
.hover:hover {
    opacity: 0.85;
}

.error {
    color: red;
    font-size: 0.8rem;
}
.forgot-password {
    color: #647497;
    text-decoration: none;
    transition: all 300ms ease-in;
}

.bottom-container {
    display: grid;
    justify-content: center;
    justify-items: center;
    margin: 0 auto;
    color: #647497;
}

.sign-up {
    color: #647497;
    text-align: center;
    transition: 150ms ease-in-out;
}

.sign-up:hover {
    opacity: 0.7;
}

.success {
    color: white;
    font-weight: 500;
}

.invalid-feedback {
    color: #c46a75;
    font-size: 0.9rem;
    font-weight: 500;
}

@media (max-width: 1130px) {
    .content > .pictures {
        display: none;
    }
    .content {
        max-width: 100vw;
        min-width: 50vw;
    }
}

.errors {
    width: 100%;
    text-align: center;
}

.errors > .error {
    font-size: 0.95rem;
}
