/*OVERRIDE CSS*/


* {
    box-sizing: border-box;
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
}

.LoginPageBody{
    
    background-image: url("../img/udm_icto_carl.png");
    background-position: right bottom;
    background-repeat: no-repeat;
    background-size: cover;
    background-color: #292A2D;
    height: 100vh;
    height: 100dvh;
}

.FooterText{
    bottom: 0;
    position: absolute;
    width: 100%;
    margin-bottom: 20px;
    color: #676560;
    overflow: hidden;
}

input[type=text], input[type=password] {
    width: 100%;
    padding: 15px;
    margin: 5px 0 22px 0;
    border: none;
    background: #f1f1f1;
}

.LoginForm{
    position: absolute;
    right: 0;
    margin: 12px;
    max-width: 180px;
    padding: 10px;
    background-color: white;
    border: 2px solid green;
    border-radius: 12px;
}

.LoginButton {
    background-color: #4CAF50;
    color: white;
    padding: 16px 20px;
    border: none;
    cursor: pointer;
    width: 100%;
    opacity: 0.9;
}

.LoginButton:hover {
    opacity: 1;
}