@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-login {
    height: 100%;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.screen-login {
    background: #f6f6f6;
    height: 55em;
    width: 45em;
    margin: auto;
    border-radius: 20px;
    box-shadow: 0px 10px 10px 2px rgb(0 0 0 / 20%);
}

.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__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 > a {
    font-weight: 800;
    color: #7e235c;
    transform: scale(1);
    transition: 0.2s ease-in-out;
}
.login__footer > a:hover {
    transform: scale(1.4);
}

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

.screen__login__icon {
    width: 7em;
}

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

.login__field {
    width: 100%;
    margin-top: 1em;
    margin-bottom: 1em;
}

.footer__login {
    margin-top: 6em;
    display: flex;
    align-content: center;
    justify-content: center;
    flex-direction: column;
    align-items: center;
}

.checkbox__field {
    width: 100%;
    margin-top: 1em;
    margin-bottom: 1em;
    display: flex;
    align-items: center;
}

.footer__field > *,
.login__title {
    font-weight: 800;
    color: #7e235c;
}
.checkbox__field span {
    margin-top: 6px;
    margin-left: 2em;
    font-weight: 800;
}

.login__input {
    border: none;
    background: none;
    font-weight: 700;
    width: 100%;
    transition: 0.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: 0.6em;
    margin-bottom: 0.6em;
}

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;
}
.no-shadow {
    padding: 10px;
    border: none;
}

.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;
}

.login__submit {
    background: #fff;
    font-size: 14px;
    margin: 10px 20px 10px 20px;
    padding: 16px 20px;
    border: 1px solid #7e235c;
    font-weight: 700;
    display: flex;
    width: 320px;
    color: #84cfdd;
    cursor: pointer;
    transition: 0.2s;
    border-radius: 5px;
    text-align: center;
}
.login__submit:active,
.login__submit:focus,
.login__submit:hover {
    outline: none;
}

.submit__button {
    width: 380px;
    height: 45px;
    margin: 10px 20px 10px 20px;
    background: #fff;
    color: #7e235c;
    border: 1px solid #7e235c;
    border-radius: 10px;
    font-size: 12px;
    font-weight: 800;
    cursor: pointer;
    transition: 0.2s;
    box-shadow: #79a8c9 0px 5px 15px;
}

.round {
    position: relative;
}

.round label {
    height: 2em;
    width: 2em;
    border: 1px solid #ccc;
    border-radius: 50%;
    cursor: pointer;
    margin-bottom: 0px;
    left: 0;
    position: absolute;
    top: 0;
    border: solid 2px;
    display: flex;
    align-content: center;
    justify-content: center;
    align-items: center;
}

.loginContainer {
    display: flex;
    flex-direction: column;
    align-content: center;
    flex-wrap: nowrap;
    align-items: center;
}

.round input[type="checkbox"] {
    visibility: hidden;
}

.round input[type="checkbox"]:checked + label {
    background-color: #7e235c;
    border-color: #7e235c;
}

.tick {
    border: 2px solid #f6f6f6;
    border-top: none;
    border-right: none;
    height: 6px;
    left: 7px;
    transform: rotate(314deg);
    width: 12px;
    margin-bottom: 2px;
}

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

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