:root {
    --c-primary: #a3e56e;
    --c-secondary: #5380ff;
}
body{
    background-color: #141420;
}
.form-control[required]{
    background-image: url("../img/icon-required.svg");
    background-size: 9px 9px;
    background-repeat: no-repeat;
    background-position: calc(100% - 10px) center;
    padding-right: 24px;
}
.btn-register-modal{
    font-family: var(--font-oswald);
    font-size: 20px;
    font-weight: 500;
    color: #0d2828;
    border-radius: 50px;
    background: #5de786 url("../img/index/bg-button.jpg");
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    padding: 20px 30px;
    border: 0;
    position: relative;
    min-height: 70px;
}
.btn-register-modal:hover, .btn-register-modal:focus{
    background-size: 1000px 500px;
    background-position: right center;
    color: #0d2828;
}
.btn-join-webinar{
    font-family: var(--font-oswald);
    font-size: 20px;
    font-weight: 500;
    color: #225709;
    border-radius: 50px;
    background-image: -moz-linear-gradient( -2deg, rgb(242,240,71) 0%, rgb(30,217,79) 100%);
    background-image: -webkit-linear-gradient( -2deg, rgb(242,240,71) 0%, rgb(30,217,79) 100%);
    background-image: -ms-linear-gradient( -2deg, rgb(242,240,71) 0%, rgb(30,217,79) 100%);
    background-size: 1000px 1000px;
    background-position: center center;
    padding: 20px 30px;
    border: 0;
}
.btn-join-webinar:hover, .btn-join-webinar:focus{
    color: #225709;
    background-size: 600px 600px;
    background-image: -moz-linear-gradient( -2deg, rgb(242,240,71) 0%, rgb(145 217 30) 100%);
    background-image: -webkit-linear-gradient( -2deg, rgb(242,240,71) 0%, rgb(145 217 30) 100%);
    background-image: -ms-linear-gradient( -2deg, rgb(242,240,71) 0%, rgb(145 217 30) 100%);
}