* {
    outline: none;
}

#loginCase {
	width: 281px;
	height: 219px;
	margin: auto;
    border: 3px solid #00627c;
    background: rgb(255,255,255);
    background: linear-gradient(180deg, rgba(255,255,255,1) 0%, rgb(173, 173, 173) 100%);
    border-radius: 23px;
    box-shadow: 0 4px 8px 0 rgb(134, 134, 134), 0 6px 20px 0 rgb(162, 162, 162);
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
}

#loginCase form {
    display: flex;
    margin-top: 22px;
}

#logoCase img {
    margin: 0 auto;
    display: block;
    margin-top: 6px;
}

.maincontent {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
    background-image: url(../img/loginBackground.png);
}

#loginInput1 {
    width: 223px;
    height: 49px;
    border: none;
    padding: 0;
    border-top-left-radius: 20px;
    padding-left: 17px;
    font-size: 114%;
    border-bottom: 2px solid #9c9c9c;
}

#loginInput2 {
    width: 223px;
    height: 49px;
    border: none;
    padding: 0;
    border-bottom-left-radius: 20px;
    padding-left: 17px;
    font-size: 114%;
}

input[type="submit"] {
    -webkit-appearance: none;
    border: none;
    width: 106px;
    border-top-right-radius: 20px;
    border-bottom-right-radius: 20px;
    border-left: 2px solid #9c9c9c;
    font-size: 3em;
    font-weight: bold;
    transition:all 0.3s ease;
}

input[type="submit"]:hover {
    color: #00627c;
}

#loginError, #stoError {
    display: none;
    margin-top: 18px;
}

#loginError button, #stoError button {
    background: none;
    border: none;
}

#loginError button img, #stoError button img {
    width: 53px;
    margin-top: 2px;
    border-radius: 100%;
    transition:all 0.3s ease;
}

#loginError button img:hover, #stoError button img:hover {
    transform: scale(1.05);
    cursor: pointer;
}

#loginErrorText, #stoErrorText {
    color: #464646;
    font-size: 1.2rem;
    font-family: sans-serif;
}