body {
    background-image: url('/img/animation.gif');
    background-size: cover;
    background-position: center;
    position: relative;
    margin: 0;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-family: Arial, sans-serif;
}
/* modal */
#myModal {
    display: none;
    position: absolute;
    z-index: 3;
    height: 100vh;
    align-items: center;
    top: 40%;
}
.modal-content {
    background-color: #fefefe;
    width: 330px;
    height: 135px;
    color: #f70000;
    padding: 9px;
    border-radius: 10px;
    text-align: center;
    align-items: center;
    display: flex;
}
#modal-text {
    width: 100%;
}
.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
}
.close:hover, .close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}
/* modal */
h1{
    font-family: Gilroy, sans-serif;
    font-size: 36px;
    margin-top: 39px;
    margin-bottom: 10px;
}
h4 {
    margin-top: 0px;
    margin-bottom: 10px;
}
#register, #no-register, #login {
    color: #000;
    background: linear-gradient(90deg, orange, yellow);
    border-radius: 10px;
    font-size: 20px;
    width: 300px;
    height: 38px;
    border: 0;
    box-shadow: -2px -2px 6px 2px #00000075;
    box-sizing: border-box;
}
#register {
    text-decoration: none;
    text-align: center;
    display: block;
    padding: 10px;
    margin-top: 20px;
}
#no-register {
    text-decoration: none;
    text-align: center;
    display: block;
    padding: 10px;
    margin-top: 20px;
}
.card{
    background-color: rgba(255, 255, 255, 0);
    border: 0;
}
form {
    height: 280px;
    align-items: center;
    display: flex;
    justify-content: center;
    border: 1px solid;
    border-radius: 20px;
    background-color: #374d61;
}
.container {
    max-width: 350px;
    text-align: center;
    height: 445px;
}
button {
    width: 300px;
    font-size: 16px;
    padding: 10px;
}
.input-container {
    margin: -17px 0 20px 0px;
    width: 300px;
}
input {
width: 300px;
padding: 10px 15px;
border: 2px solid #ccc;
border-radius: 4px;
font-size: 16px;
box-sizing: border-box;
}
input:focus {
border-color: #4CAF50;
}
#label-email, #label-password {
    position: relative;
    display: inline-block;
    width: 60px;
    top: 9px;
    left: -92px;
    background: #e8f0fe;
    padding: 1px 10px;
    font-size: 12px;
    color: #555;
    border: 1px solid black;
    border-radius: 5px;
    text-align: left;
}
input:focus + label {
color: #4CAF50;
}

 
@media (max-width: 575px) {
    body {
        background-size: cover;
        background-position: center;
        position: relative;
        margin: 0;
        height: 100vh;
        display: flex;
        justify-content: center;
        align-items: center;
        color: white;
        font-family: Arial, sans-serif;
    }
}