body {
    margin: 0;
}

.containeer {
    height: 100vh;
    width: 100%;
    background: linear-gradient(256deg, #e61414, #8c1616, #cac6fd, #ffffff, #858fc7, #0c67db, #0d09ff, #230bff);
    background-size: 1600% 1600%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-position: 0px 0px;
    background-repeat: repeat-x;
    -webkit-animation: change 25s ease infinite;
    -moz-animation: change 25s ease infinite;
    animation: change 25s ease infinite;
}

@-webkit-keyframes change {
    0% {
        background-position: 0% 50%
    }
    50% {
        background-position: 100% 50%
    }
    100% {
        background-position: 0% 50%
    }
}

@-moz-keyframes change {
    0% {
        background-position: 0% 50%
    }
    50% {
        background-position: 100% 50%
    }
    100% {
        background-position: 0% 50%
    }
}

@keyframes change {
    0% {
        background-position: 0% 50%
    }
    50% {
        background-position: 100% 50%
    }
    100% {
        background-position: 0% 50%
    }
}

.login-container {
    height: 100%;
    width: 40%;
    background-color: white;
    display: flex;
    align-items: center;
    flex-direction: column;
    border-radius: 5px;
    min-width: 492px;
}
#links{
    display: flex;
    flex-direction: column;
    height: 172px;
    align-items: center;
    justify-content: space-evenly;
}
input:disabled{
    color: black !important;
}
label{
    color: black !important;
}
.modalDialog {
	position: fixed;
	font-family: Arial, Helvetica, sans-serif;
	top: 0;
	right: 0;
	bottom: 0;
    align-items: center;
	left: 0;
	background: rgba(0,0,0,0.8);
	z-index: 99999;
	display:none;
	-webkit-transition: opacity 400ms ease-in;
	-moz-transition: opacity 400ms ease-in;
	transition: opacity 400ms ease-in;
	pointer-events: auto;
}
.modalDialog:target {
	opacity:1;
	pointer-events: auto;
}
.modalDialog > div {
    width: 80%;
    position: relative;
    font-weight: 700;
    height: 90%;
  
    justify-content: center;
    align-items: center;
    text-align: center;
    margin: 10% auto;
    padding: 5px 20px 13px 20px;
    border-radius: 10px;
    background: #fff;
    -webkit-transition: opacity 400ms ease-in;
    -moz-transition: opacity 400ms ease-in;
    transition: opacity 400ms ease-in;

}
.firstpart, .secondpart {
    width: 45%;;
}

.close {
	background: #606061;
	color: #FFFFFF;
	line-height: 25px;
	position: absolute;
	right: -12px;
	text-align: center;
	top: -10px;
	width: 24px;
	text-decoration: none;
	font-weight: bold;
	-webkit-border-radius: 12px;
	-moz-border-radius: 12px;
	border-radius: 12px;
	-moz-box-shadow: 1px 1px 3px #000;
	-webkit-box-shadow: 1px 1px 3px #000;
	box-shadow: 1px 1px 3px #000;
}
.close:hover { background: #00d9ff; }

#loading{
    margin: 0;
    display: flex;
    text-align: center;
    flex-direction: inherit;
}
#data {
    width: 50%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.input-field {
    width: 100%;
}

.button-container {
    height: 28%;
    display: flex;

}

@media only screen and (max-width: 600px) {
    .login-container {
        width: 100%;
        border-radius: 0px;
    }
}