*{
    box-sizing: border-box;
    font-family: Jost;
    margin:0;
    padding: 0;
}
body{
    background-image: url("BG .png");
    background-size: cover;
    background-repeat: no-repeat;
}
.main-container{
    min-width: 100vw;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
.main-container .inner{
    max-width: 420px;
    width: 100%;
}
.logo{
    display: flex;
    justify-content: center;
}
.logo img{
    width: 100%;
    max-width: 400px;
}
.form-container{
    margin-top: 20px;
    background: rgba(0,0,0,.2);
    padding: 20px;
}
.message {
    text-align: center;
    font-size: 20px;
    font-weight: bold;
}
.row{
    display: flex;
    flex-direction: column;
    font-size: 20px;
    margin-top: 10px;
    margin-bottom: 10px;
}
.row-check{
    flex-direction: row;
}
.row-check input{
    margin-right: 5px;
}
input{
    padding: 3px;
    font-size: 18px;
}
.small{
    font-size: 0.8rem;
    font-style: italic;
}
.button-row{
    display: flex;
    justify-content: space-between;
}
.btnAttend{
    width: 40%;
    border: 1px solid rgba(0, 0, 0, 0.81);
    background: rgba(238, 244, 1, 0);
    font-weight: bold;
    text-align: center;
    cursor: pointer;
    transition: all .3s linear;
}
.btnAttend:hover{
    background: rgba(238, 244, 1, 0.7);
}
.btnAttend.active{
    background: rgba(238, 244, 1, 1);
}
.submit-row{
    margin-top:20px;
    display: flex;
    justify-content: center;
}
.submitBtn{
    padding: 5px;
    background: #eef401;
    border: 1px solid rgba(0, 0, 0, 0.81);
    text-align: center;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
}
.modal, .modal-gdpr{
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0,.8);
    z-index: 2;
    display: none;
    justify-content: center;
    align-items: center;
}
.modal-inner{
    background: #c3d502;
    max-width: 300px;
    width: 100%;
    text-align: center;
    font-size: 18px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 15px;
}
.modal-gdpr .modal-inner{
    max-width: 600px;
    width: 100%;
    position: relative;
    padding: 20px;
}
.modalBtn{
    padding: 5px;
    background: #eef401;
    border: 1px solid rgba(0, 0, 0, 0.81);
    text-align: center;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
}
.modal-close{
    position: absolute;
    top: 0;
    right: 10px;
    font-weight: bold;
    font-size: 24px;
    cursor: pointer;
}
.gdprBtn{
    text-decoration: underline;
    font-weight: bold;
}