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;
}
h1{
    font-family: Gilroy, sans-serif;
    font-size: 36px;
    margin-top: 39px;
    margin-bottom: 10px;
    text-shadow: -3px 1px 2px rgb(55 189 34);
    /* -webkit-text-stroke: 1px #81a54b; */
}
h4 {
    margin-top: 0px;
    margin-bottom: 10px;
}
#register, #login {
    color: white;
    background: linear-gradient(to right, #59cd58, #09894f);
    border-radius: 10px;
    font-size: 20px;
    width: 300px;
    height: 38px;
    border: 0;
    box-shadow: -2px -2px 6px 2px #00000075;
    box-sizing: border-box;
}
.card-header h3 {
    margin: 12px 0;
    text-align: center;
    font-size: 35px;
    color: orange;
}
.card{
    background-color: rgba(255, 255, 255, 0);
    border: 0;
}
.form {
    display: grid;
    height: 450px;
    align-items: center;
    text-align: center;
    justify-content: center;
    border: 1px solid;
    border-radius: 20px;
    background-color: #374d61
}
.container {
    max-width: 350px;
    text-align: center;
    height: 440px;
}
.input-container {
    position: relative;
    margin: 20px 0;
    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-login, #label-password, #label-confirm, #label-wallet, #label-chain {
    position: relative;
    display: inline-block;
    width: 130px;
    top: 9px;
    left: -60px;
    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;
}
#regged {
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;
    margin: 15px auto;
}
.modal {
    display: none;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgb(0,0,0);
    background-color: rgba(0,0,0,0.4);
}
.modal-content {
    background-color: #fefefe;
    border: 1px solid #888;
    width: 350px;
    height: 100px;
    margin: 0 auto;
    align-items: center;
    display: flex;
    top: 43%;
    position: relative;
    border-radius: 15px;
}
.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
}
.close:hover, .close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}
#modal-text {
    margin: 0 auto;
    color: red;
    font-weight: bold;
    padding: 0 30px;
    justify-content: space-around;
    display: flex;
    font-size: 1.8vh;
}
 
 
@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;
    }
}