/*
DeCare Dental Blue: #009cde 
DeCare Vision Purple: #2b2d7f
DeCare pale blue: #cdeafa
Not Black: #0b0849
*/

body {
    /* min-height:100vh; */
    background: url('../../images/v2/background-curve.svg') no-repeat;
    background-size: auto;
    background-position: 130% 0;
    padding: 2em;
    font-family: 'Rubik', sans-serif;
    overflow-x: hidden;
}

h1, h2, h3 {
    font-family: 'Rooney-Sans', sans-serif;
}

h1 {
    font-size: 3.5em;
}

p {
    color:#0b0849;
}

/* Header */
header {
    /*min-height: 120px;*/
    display: flex;
    flex-direction: column;
}

.decare-logo img {
    max-width: 100%;
    height: auto;
    margin-bottom:1em;
}

.link-with-arrow {
    padding: 1em;
    color: #009cde;
}

.link-arrow {
    margin-right:0.5em;
    transform: translateX(0);
    transition: all 0.3s ease-in-out;
}

.link-with-arrow:hover .link-arrow {
    transform: translateX(-5px);
    transition: all 0.3s ease-in-out;
}

/* Main */
.login-title {
    color: #009cde;
}

.login-icon {
    margin: 2em 0 1.5em;
}

/* Claim Buttons*/
.claim-buttons {
    margin: 2em 0;
}
.claim-buttons .btn, .login-form button {
    font-family: 'Rooney-Sans', sans-serif;
    margin: 0.5em;
    border-radius: 8px;
    color: #fff;
    padding: 0.75em 1em;
    min-width:230px;
    max-width: 100%;
    text-transform: uppercase;
}

.btn-dental {
    background-color: #009cde;
}

.btn-vision {
    background-color: #2b2d7f;
}

.btn-dental:hover {
    background-color: #cdeafa;
    color: #009cde;
    text-decoration: underline;
}

.btn-vision:hover {
    background-color: #CACBDE;
    color: #2b2d7f;
    text-decoration: underline;
}

/* Form */
.login-form {
    padding-right: 2em;
}

.login-form input {
    box-shadow: 0px 3px 15px rgba(0, 81, 141, 0.1);
    border-width: 0px;
    padding: 1em;
    margin-bottom:1.5em;
    border-radius: 8px;
}

.login-form label {
    padding: 0.5em 0.8em;
}

.login-form button {
    color: #fff;
    padding: 0.75em 1em;
}

.login-form .form-button-wrap {
    margin: 1em 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-end;
}

.login-employers {
    background-color: #F4FBFF;
    padding: 1em;
    border-radius: 8px;
}

.login-employers p {
    margin-bottom:0em;
}

.login-employers a {
    color: #009cde;
}

.image-wrap {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.image-wrap img {
    width:90%;
}

/* @media only screen and (max-width: 1200px){
    .image-wrap {
        display:none;
    }
} */

@media only screen and (max-width:1200px) {
    .login-form {
        padding-right: 0;
    }
    .login-content {
        padding-left:2em;
    }
    h1 {
        font-size:3em;
    }
}

@media only screen and (max-width: 992px) {
    body {
        background-size: 0%;
    }
    .login-form {
        padding-right: 0;
    }

    h1 {
        font-size:2.5em;
    }
    .image-wrap {
       display: none;
    }
}