#pwdIcon {background-image: url(../img/key-solid.svg);}
#emailIcon {background-image: url(../img/user-solid.svg);}
#emailIcon, #pwdIcon {
    background-repeat: no-repeat;
    background-size: 1rem;
    background-position: 8px 8px;
    text-indent: 30px;
}
.login h2 {
    margin-top: -1rem;
    color: #026a9f;
}
.login{
    display: flex;
    height: calc(100% - 3rem);
    width: 100%;
    background-image: url(../img/background.jpg);
}
.login form {
    margin: auto;
    padding: 3rem;
    background-image: radial-gradient(rgb(0 194 255 / 70%), rgb(113 215 247));
    border-radius: 35px;
    box-shadow: rgb(12 92 122) 5px 5px 15px -4px;
}
  .login input {
    display:block;
    margin-bottom: 1rem;
    line-height: 2rem;
    width: calc(100% - 0.5rem);
    border-color:Transparent;
}
#loginButton {
    appearance: none;
    background-color: rgb(113 215 247);
    border: 2px solid #026a9f;
    border-radius: 15px;
    box-sizing: border-box;
    color: #026a9f;
    cursor: pointer;
    display: inline-block;
    font-size: xx-large;
    font-weight: 600;
    line-height: normal;
    margin: 0;
    min-height: 60px;
    min-width: 0;
    outline: none;
    padding: 16px 24px;
    text-align: center;
    text-decoration: none;
    transition: all 300ms cubic-bezier(.23, 1, 0.32, 1);
    user-select: none;
    -webkit-user-select: none;
    touch-action: manipulation;
    width: 100%;
    will-change: transform;
    margin-top: 1rem;
}
#loginButton:hover {
    background-color: #026a9f;
    color: rgb(113 215 247);
    box-shadow: rgba(0, 0, 0, 0.25) 0 8px 15px;
    transform: translateY(-2px);
}
#loginButton:active {
  box-shadow: none;
  transform: translateY(0);
}
