@import url('https://fonts.googleapis.com/css?family=Raleway:400,700');

* {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
	font-family: Raleway, sans-serif;
}

body {
	background-color: white;
    font-family: 'Raleway', sans-serif;
    background: white;
    background-attachment: fixed;
    color: #7E235C;
}

.container {
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 100vh;
}

.screen {
	background: #F6F6F6;
	height: 55em;
	width: 45em;
    border-radius: 20px;
    box-shadow: 0px 10px 10px 2px rgb(0 0 0 / 20%);
    display: flex;
    align-items: center;
}

.login {
    height: 100%;
	width: 100%;
	padding-left: 8em;
    padding-right: 8em;
    display: flex;
    flex-direction: column;
    align-content: center;
    align-items: center;
}

.login__header, .login__main, .login__footer{
    width: 100%;
}

.login__header{
    height: 35%;
    display: flex;
    flex-direction: column;
    align-content: center;
    justify-content: center;
    align-items: center;
}
.login__header > p {
    font-weight: 800;
}

.login__main{
    height: 50%;
    padding-top: 3em;
}

.login__footer{
    height: 15%;
    display: flex;
    align-content: center;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
.login__footer > div {
    display: flex;
    align-content: center;
    justify-content: center;
    align-items: center;
    transform: scale(1);
    transition: 0.2s ease-in-out;
}
.login__footer > div:hover {
    transform: scale(1.4);
}
.login__footer > div > * {
    margin-left: 0.3em;
}
.login__footer > div > *:hover {
    color: #7E235C;
}

.login__footer * {
    font-weight: 800;
    color: #7E235C;
}

.screen__img{
    width: 70%;
    margin: 0 10%;
}

.screen__login__icon{
    width: 7em;
}



.login__input {
	border: none;
	background: none;
	font-weight: 700;
	width: 100%;
	transition: .2s;
    padding-top: 10px ;
    padding-bottom: 10px ;
    font-size: 1em;
    border-radius: 14px ;
    border: 2px solid #7E235C ;
    background-color: rgb(255 255 255 / 36%) ;
    color: #7E235C ;
    padding-left: 15px ;
    padding-right: 15px ;
    margin-top: 1.5em;
    margin-bottom: 1.5em;
}

input:-webkit-autofill, input:-webkit-autofill:hover, input:-webkit-autofill:focus, textarea:-webkit-autofill, textarea:-webkit-autofill:hover, textarea:-webkit-autofill:focus, select:-webkit-autofill, select:-webkit-autofill:hover, select:-webkit-autofill:focus {
    border: 2px solid #7E235C ;
    -webkit-text-fill-color: #7E235C;
    -webkit-box-shadow: 0 0 0px 0px #7e235c inset;
    transition: background-color 5000s ease-in-out 0s;
}


.login__input::placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
  color: #7E235C;
  opacity: 1; /* Firefox */
}
label {
    color: #7E235C;
    font-weight: bold;
    font-size: 80%;
}

.login__input:active,
.login__input:focus,
.login__input:hover {
	outline: none;
}


.submitButton {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #E7DBE3 ;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 2px 5px;
    border-radius: 10em;
}
.submitButton:hover {
    background-color: #7E235C ;
    color: white  ;
}
.submitButton:hover *{
    color: white !important ;
}
.submitButton .fas{
    color: #7E235C;
    margin-left: 2em;
}

.purpleline{
    width: 100%;
    border: 1px solid #7E235C;
}

.login__disclaimer {
    margin-top: 2em;
    text-align: center;
    font-weight: 800;
}