.login-form-container,
.registration-form-container,
.reset-password-form-container {
    width: 20%;
    margin-left: auto;
    margin-right: auto;
}

.registration-form-tos-link,
.registration-form-tos-link:hover {
    color: black;
}

a.form-link {
    color: black;
    text-decoration: underline;
}

a.form-link:hover {
    text-decoration: none;
}

@media (max-width: 1799.98px) {
    .login-form-container,
    .registration-form-container,
    .reset-password-form-container {
        width: 30%;
    }
}

@media (max-width: 1198.98px) {
    .login-form-container,
    .registration-form-container,
    .reset-password-form-container {
        width: 40%;
    }
}

@media (max-width: 767.98px) {
    .login-form-container,
    .registration-form-container,
    .reset-password-form-container {
        width: 100%;
    }
}

/**
 * Sign in with Google button
 */

.btn-sign-in-with-google {
    display: flex;
    padding: 0;
    font-size: 16px;
    font-weight: 600;
    line-height: 48px;
    background-color: #fff;
    color: rgba(0, 0, 0, 0.54);
    border: 1px solid #fff;
    border-radius: 1px;
    box-shadow: 0 2px 4px 0 rgba(0,0,0,.25);
    transition: background-color .218s,border-color .218s,box-shadow .218s;
    text-decoration: none;
}

.btn-sign-in-with-google:hover {
    color: rgba(0, 0, 0, 0.54);
    text-decoration: none;
    cursor: pointer;
    box-shadow: 0 0 3px 3px rgba(66,133,244,.3);
}

.btn-sign-in-with-google .img-container {
    display: grid;
    padding-left: 15px;
    padding-right: 15px;
    background-color: #fff;
    justify-items: center;
    align-items: center;
}
.btn-sign-in-with-google .img-container span {
    height: 24px;
    width: 24px;
    background-image: url("../images/icons/google-icon-7_Jef7i.svg");
    background-repeat: no-repeat;
}

.btn-sign-in-with-google .text {
    flex-grow: 1;
    text-align: center;
}

/**
 * Sign in with Facebook button
 */
.btn-sign-in-with-facebook {
    display: flex;
    padding: 0;
    font-size: 16px;
    font-weight: 600;
    line-height: 48px;
    color: rgba(0, 0, 0, 0.54);
    background-color: #fff;
    text-decoration: none;
    box-shadow: 0 2px 4px 0 rgba(0,0,0,.25);
    transition: background-color .218s,border-color .218s,box-shadow .218s;
}

.btn-sign-in-with-facebook:hover {
    color: #fff;
    text-decoration: none;
    cursor: pointer;
    color: rgba(0, 0, 0, 0.54);
    box-shadow: 0 0 3px 3px rgba(66,133,244,.3);
}

.btn-sign-in-with-facebook .img-container {
    padding-left: 15px;
    padding-right: 15px;
    display: grid;
    justify-items: center;
    align-items: center;
}

.btn-sign-in-with-facebook .img-container span {
    height: 24px;
    width: 24px;
    background-image: url("../images/icons/facebook-round-icon-IaGJ_uC.svg");
    background-repeat: no-repeat;
}

.btn-sign-in-with-facebook .text {
    flex-grow: 1;
    text-align: center;
}