@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;600;700&display=swap');

:root, html {
	--black: rgb(59,68,79); 
	--blue: rgb(25, 69, 127); 
}

body, body * {
    color: var(--black);
	font-family: 'Open Sans', Arial, Helvetica, sans-serif;
	font-size: 16px;
	font-weight: 400;
	line-height: 1.5;
	text-rendering: optimizeLegibility;
}


.background {
    align-items: center;
    background: url(./images/background.jpg) no-repeat;
    background-size: cover;
    bottom: 0;
    display: flex;
    justify-content: center;
    left: 0;
    overflow-y: auto;
    position: absolute;
    right: 0;
    top: 0;
}
.login {
    max-height: 90vh; 
    width: 434px;
}

.login h1 {
    background-color: rgb(25, 69, 127);
    border-radius: 12px 12px 0 0;
    color: white;
    font-weight: 600;
    margin: 0;
    padding: 15px 10px;
    text-align: center;
}
.login h2 {
    font-size: 30px;
    font-weight: 600;
    position: relative;
    margin: 0 0 20px 0;

}
.login h2>span {
    position: absolute;
    right: 0px;
    top: 12px;
}
.login>div {
    background-color: white;
    padding: 0 24px 48px 24px;

}
.logo {
    padding: 20px 0 0 0;
    text-align: center;
}
.options .button {
    position: relative;
    background-color: #fff;
    border: 1px solid var(--blue);
    border-radius: 10px;
    border-right-color: var(--blue);
    border-right-width: 45px;
    background: linear-gradient(to left,white 50%,var(--blue) 50%) right;
    background-size: 200%;
    padding: 10px 0;
    text-align: center;
    transition: .3s ease-out;
}
.options .button::after {
    background-image: url(images/chevron_right.svg);
    content: '';
    display: inline-block;
    height: 30px;
    position: absolute;
    right: -40px;
    width: 30px;
}
.options .button:hover {
    background-position: left;
    color: white;
    cursor: pointer;
}

.engine {
    border-radius: 0 0 12px 12px;
    display: flex;
    align-items: center;
}
.engine>img {
    padding: 1px;
}
.engine>span {
    margin-left: 12px;
}
