*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

body{
    font-family: 'gilroyregular';
    color: #000;
}

.main-container{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.main-img{
    width: 100%;
    background-position: center;
    background-repeat: no-repeat;
    height: auto;
}

.main-text{
    width: 100%;
    background-position: center;
    background-repeat: no-repeat;
    height: auto;

}

.form-main-container{
    background-color: #00041D;
    padding: 50px 0 0px;
}


.form-container{
    width: 100%;
    max-width: 1000px;
    margin: auto;
    padding: 20px 30px 30px;
    text-align: center;
    color: #fff;
    box-shadow: 0 0 15px #000;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
}

.input-sub-data{
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 30px;
    margin-top: 20px;
}

.input-data{
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 10px;
}

.input-data > label{
    font-size: 18px;
}

.input-field{
    width: 100%;
    padding: 5px 10px;
}

.btn-container{
    margin-top: 20px;
}

.register-btn{
    padding: 10px 20px;
    background-color: #fff;
    color: #00041D;
    border: none;
    border-radius: 5px;
}