body {
    margin: 0;
    padding: 0;
    background-color: #000000;
    color: #FFFFFF;
    background-image: url("/images/login.jpg");
    background-repeat: no-repeat, repeat;
    background-size: cover;
}

.content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.content div {
    margin-top: 10px;
    height: 37px;
}

.content > div {
    display: flex;
}

.messageError {
    position: relative;
    top: 15px;
    color: #9d0303;
    font-weight: 600;
    text-align: left;
    display: none;
}

img {
    border-top: solid 1px #1ba1d4;
    border-left: solid 1px #1ba1d4;
    border-bottom: solid 1px #1ba1d4;
    border-right: none;
    position: relative;
    bottom: 0px;
    width: 34px;
    height: 35px;
    background-color: #FFFFFF;
    vertical-align: middle;
}

input {
    height: 33px;
    width: 194px;
    border-left: none;
    border-top: solid 1px #1ba1d4;
    border-right: solid 1px #1ba1d4;
    border-bottom: solid 1px #1ba1d4;
    background-color: #ffffff;
    padding-left: 10px;
}

input:-webkit-autofill {
    -webkit-box-shadow:200px 200px 100px white inset;
    box-shadow:200px 200px 100px white inset;
}

button {
    color: #FFFFFF;
    height: 37px;
    margin-top: 10px;
    width: 242px;
    background-color: #1ba1d4;
    border : solid 1px #2d5968;
    border-radius: 3px;
    font-weight: 600;
}

button:hover{
    background-color: #2d5968;
}

button:focus-visible {
    background-color: #2d5968;
}

.panelErrorConnectionRefused {
    z-index: 99;
    width: 400px;
    line-height: 35px;
    padding: 80px 20px;
    text-align: center;
    border-radius: 7px;
    font-size: x-large;
    background-color: rgb(33 71 82 / 95%);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}