@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700&display=swap');

html {
    font-family: 'Open Sans', sans-serif;
}
body {
    margin: 0;
    border: 0;
    padding: 0;
    box-sizing: border-box;
}
main {
    background-color: #5863F8;
    height: 98vh;
    width: 100vw;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.material-symbols-outlined {
    position: relative;
    top: 3px;
}
.container, .loginSuccesful {
    width: 45vw;
    padding: 0 20px;
    margin: 170px auto;
}
.loginSuccesful {
    margin: 0 170px;
    height: 40vh;
    display: none;
}
.wrapper1 .title {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.wrapper, .wrapper1 {
    width: 100%;
    background: #EFE9F4;
    border-radius: 10px 10px 5px 5px;
    box-shadow: 0 0 20px 0px #0000005e;
}
.wrapper1 {
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.wrapper1 .title span {
    font-size: 90px;
    color: green;
}
.wrapper1 .subtitle {
    text-align: center;
}
.wrapper .formHeader {
    height: 90px;
    background: #424aba;
    border-radius: 5px 5px 0 0;
    color: #EFE9F4;
    font-size: 30px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    flex-wrap: nowrap;
}
.wrapper .title {
    font-size: 30px;
    position: relative;
    top: -4px;
}
.wrapper .subtitle {
    font-size: 12px;
    position: relative;
    top: -8px;
}
.wrapper form {
    padding: 30px 25px 25px 25px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-evenly;
}
.formTop {
    display: flex;
    flex-direction: column;
    width: 100%;
}
.formBottom {
    display: flex;
    flex-direction: column;
    width: 100%;
}
.wrapper form .row {
    width: 100%;
    height: 45px;
    margin-bottom: 15px;
    position: relative;
}
.wrapper form .row input {
  height: 100%;
  width: calc(100% - 63px);
  outline: none;
  padding-left: 60px;
  border-radius: 5px;
  border: 1px solid lightgrey;
  font-size: 16px;
  transition: all 0.3s ease;
}
form .row input:focus {
  border-color: #424aba;
  box-shadow: inset 0px 0px 2px 2px #424aba;
}
form .row input::placeholder {
  color: #999;
}
form .row.button {
    margin-bottom: 0;
    position: relative;
    top: 16px;
    height: 100%;
}
.actionList ul li::marker {
    color: #424aba;
}
.actionList ul .errorMessage, .actionList ul .errorMessage::marker {
    color: red;
}
.actionList ul li a {
    color: #424aba;
    text-decoration: none;
}
/*
.actionList ul .errorMessage {
  visibility: hidden;
}
*/
.wrapper form .row i {
  position: absolute;
  width: 47px;
  height: calc(100% + 2px);
  color: #fff;
  font-size: 18px;
  background: #424aba;
  border: 1px solid #424aba;
  border-radius: 5px 0 0 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: default;
}
.wrapper form .row i ::selection {
    background-color: transparent;
}
.wrapper form button {
  color: #fff;
  font-size: 20px;
  font-weight: 500;
  padding-left: 0px;
  background: #16a085;
  border: 1px solid #16a085;
  cursor: pointer;
}
#passwordRow {
    display: flex;
    align-items: center;
}
#loginButton {
    background-color: #424aba;
    color: #EFE9F4;
    width: 100%;
    border-radius: 10px;
    height: 40px;
    display: flex;
    flex-direction: row;
    align-content: center;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    cursor: not-allowed;
    transition: 0.3s;
}
input#loginButton:hover + #loginButton {
    box-shadow: 0 0 15px #424aba;
}
input#loginButton:focus + #loginButton {
    box-shadow: 0 0 15px #424aba;
}
#loginButton .loginButtonContent {
    width: 20%;
    display: flex;
    justify-content: center;
}
#loginButton .material-symbols-outlined {
    position: relative;
    top: 0;
}
input#loginButton {
    position: absolute;
    z-index: 1;
    opacity: 0;
}
#passwordRow div {
    position: absolute;
    right: 0;
}
.showPasswordButton {
    cursor: pointer;
    display: flex;
    width: 51px;
    height: calc(100% + 2px);
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.showPasswordButton ::selection {
    background-color: rgba(255, 255, 255, 0);
}
#showPassword {
    position: relative;
    top: 1px;
    height: 24px;
}
.strongPasswordInfo {
    color: #7d7d7d;
    font-size: x-small;
    padding: 0 5px 0 10px;
    position: relative;
    top: -8px;
}
.strongPasswordInfo a {
    color: #6e6e6e;
}

footer {
    background-color: #424aba;
    color: #EFE9F4;
    height: 2vh;
    width: 100vw;
    font-size: 11px;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: center;
}
footer a {
  color: #EFE9F4;
}

@media (max-height: 730px) {
    footer {
        font-size: 9px;
    }
}
@media (max-width: 1000px) {
    .container, .loginSuccesful {
        width: 65vw;
    }
    #loginButton .loginButtonContent {
        width: 30%;
    }
}
@media (max-width: 530px) {
    .container, .loginSuccesful {
        width: 80vw;
    }
}