@media (min-width: 700px) {
    .login {
        min-width: 500px;
    }
}
@media (max-width: 700px) {
    .login {
        width: 100%;
    }
}
.login {
    margin: 20px auto;
    padding: 40px 50px;
    background: #fff;
}

    .login input {
        width: 100%;
        display: block;
        box-sizing: border-box;
        margin: 10px 0;
        padding: 14px 12px;
        font-size: 16px;
        border-radius: 2px;
        font-family: Raleway, sans-serif;
    }
.form-check input[type=radio] {
    width: auto;
    display: block;
    box-sizing: border-box;
    margin: 10px 0px 0 10px;
    padding: 7px 7px;
    font-size: 16px;
    border-radius: 10px;
    font-family: Raleway, sans-serif;
}
.form-check {
    cursor: pointer;
}
.form-check-input:focus {
    box-shadow: 0 0 0 .25rem rgb(244 152 184 / 26%);
}
.form-check-input:checked {
    background-color: #f498b8;
    border-color: #f498b8;
}
/* Highlight parent label if its radio button is checked */
.form-check:has(input[type="radio"]:checked) {
    background-color: #ffeff4;
}
.form-check input[type=radio]{
    position:absolute;
}
.form-check label {
    padding: 5px 13px 5px 32px;
    cursor: pointer;
}
        .login input[type=text],
        .login input[type=password] {
            border: 1px solid #c0c0c0;
            transition: .2s;
        }

            .login input[type=text]:hover {
                border-color: #F44336;
                outline: none;
                transition: all .2s ease-in-out;
            }

        .login input[type=submit] {
            border: none;
            background: #EF5350;
            color: white;
            font-weight: bold;
            transition: 0.2s;
            margin: 20px 0px;
        }

            .login input[type=submit]:hover {
                background: #F44336;
            }

   


.links {
    display: table;
    width: 100%;
    box-sizing: border-box;
    border-top: 1px solid #c0c0c0;
    margin-bottom: 10px;
}

    .links a {
        display: table-cell;
        padding-top: 10px;
        color: #F498B5;
        -webkit-transition: all 0.1s;
        transition: all 0.1s;
    }

        .links a:first-child {
            text-align: left;
        }

        .links a:last-child {
            text-align: right;
        }

.login h2,
.login p {
    text-align: center;
}
#emailField, #phoneField {
    min-height: 110px;
}