@import url('https://fonts.googleapis.com/css2?family=Delius&family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap');

body{
    margin: 0;
    background: url(../img/BG2.webp) no-repeat center center fixed;
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    font-family: 'delius';
}

.GV__register--container{
    background: linear-gradient(to bottom, #3f6948, #8aac8a);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    width: 400px;
    text-align: center;
    padding: 20px;
    margin-top: 5px;
    opacity: 0.9;
}

.GV__register--logo{
    margin-bottom: 10px;
    font-size: 70px;
    color: white;
}

.GV__register{
    display: flex;
    flex-direction: column;
    align-items: center;
}

.GV__register--row{
    margin-bottom: 10px;
    width: 100%
}

.GV__register--label{
    display: block;
    margin: 0 0 5px 15px;
    color: white;
    font-weight: 800;
    text-align: left;
}

.GV__register--input{
    width: 90%;
    padding: 10px;
    border: 1px solid white;
    border-radius: 5px;
}

.GV__register--button{
    background-color: #1d3f2b;
    color: white;
    padding: 10px 80px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    margin-top: 10px;
}

.GV__register--button:hover{
    background-color: #357ABD;
}

a{
    color: #1d3f2b;
    margin-top: 10px;
    display: block;
    text-decoration: none;
}

a:hover{
    text-decoration: underline;
}

/* Ipad Pro */
@media only screen and (max-width: 1200px){
    .GV__form--container{
        width: 500px;
    }
}
/* All the other Ipad lines */
@media only screen and (max-width: 992px){
    .GV__form--container{
        width: 500px;
    }
}

/* All the mobile lines */
@media only screen and (max-width: 576px){
    .GV__register--container{
        width: 300px;
    }
}