@import url('https://fonts.googleapis.com/css2?family=Source+Sans+Pro:wght@200;300;400;600;700;900&display=swap');
html, body{
    background: url(../img/fon.jpg);
    background-size: cover;
    color: #333;
    font-family: 'Source Sans Pro', sans-serif;
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
}
a{
    text-decoration: none;
    transition: 0.3s;
    cursor: pointer;
}
hr{
    height: 0;
    border: 1px solid #b5d2e1;
}
button{
    border: none;
    cursor: pointer;
    background: #74b5d5;
    color: #fff;
    border-radius: 15px;
    padding: 5px 14px;
    box-shadow: 0 2px 4px rgb(0 0 0 / 10%);
    transition: 0.3s;
}
button:hover{
    background: #5b90ab;
    box-shadow: 0 2px 4px rgb(0 0 0 / 20%);
}
input, select, textarea{
    padding: 8px;
    box-sizing: border-box;
    border-radius: 5px;
    font-size: 18px;
    font-family: 'Source Sans Pro', sans-serif;
    border: 1px solid rgba(0,0,0,0.2);
    box-shadow: 0 2px 4px rgb(0 0 0 / 10%);
}
textarea{
    width: 100%;
    min-height: 50px;
}
select{
    cursor: pointer;
}
input.checkbox{
    display: inline-block;
    width: 17px;
    height: 17px;
    vertical-align: top; 
    margin-top: 1px;
    cursor: pointer;
}
.text-center{
    text-align: center;
}
.wrapper{
    display: flex;
    align-content: center;
    align-items: center;
    height: 100vh;
}
.login{
    margin: auto;
    width: 60%;
    max-width: 900px;
    /*box-shadow: 0 0 20px rgb(0 0 0 / 5%);
    padding: 20px;
    box-sizing: border-box;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 20px;
    border: 1px solid #fff;*/
    position: relative;
}
.title-login{
    text-align: center;
    position: absolute;
    top: -100px;
    left: 0;
    width: 100%;
    font-size: 40px;
}
.body-login{
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}
.row-form{
    margin: 15px 0;
}
.row-form label{
    display: block;
    font-size: 14px;
}
.left-zone, .right-zone{
    max-width: 350px;
    margin: auto;
    box-shadow: 0 0 20px rgb(0 0 0 / 5%);
    padding: 20px;
    box-sizing: border-box;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 20px;
    border: 1px solid #e1e1e1;
}
.row-form input{
    width: 300px;
}
input.checkbox{
    width: 20px;
}
.submit-row input{
    border-radius: 5px;
    padding: 10px 10px;
    background: #498af2;
    width: 170px;
    border: none;
    margin: 0 auto;
    display: block;
    color: #fff;
    text-transform: uppercase;
    cursor: pointer;
    transition: 0.3s;
}
.submit-row{
    margin-top: 30px;
}
.submit-row input:hover{
    background: #2a6fdd;
}
.link-row{
    margin-top: 30px;
    text-align: right;
    margin-bottom: 0px;
}
.link-row a{
    color: #7f8da5;
}
.link-row a i{
    display: inline-block;
    vertical-align: top;
    margin-top: 3px;
}
.link-row a:hover{
    color: #375d9d;
}
.right-zone a{
    width: 300px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    display: block;
    border-radius: 5px;
    font-size: 24px;
    position: relative;
    margin: 20px auto;
}
.right-zone a i{
    font-size: 30px;
    left: 15px;
    top: 10px;
    position: absolute;
}
.facebook{
    background: #3B579D;
    color: #fff;
}
.facebook:hover{
    background: #284281;
}
.google{
    background: #fff;
    color: #686868;
    border: 1px solid rgba(0,0,0,0.2);
    box-shadow: 0 2px 4px rgb(0 0 0 / 10%);
}
.google:hover{
    background: #f2f2f2;
    box-shadow: none;
}
.google img{
    height: 34px;
    left: 10px;
    top: 8px;
    position: absolute;
}
.line{
    height: 450px;
    width: 2px;
    background: #e1e1e1;
}
.right-zone h3{
    text-align: center;
    margin-top: 0px;
    color: #505050;
    font-weight: 400;
}
.reg-btn{
    float: left;
}
.red-text{
    color: #d96363;
}
.green-text{
    color: #20872f;
}
.logotype{
    position: absolute;
    top: 20px;
    left: 20px;
}
.logotype a{
    font-size: 26px;
    font-weight: bold;
    text-decoration: none;
    color: #333;
}
.popup{
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.8);
    z-index: 99;
    overflow: auto;
}
.body-popup{
    margin: 50px auto;
    width: 600px;
    max-width: 95%;
    box-sizing: border-box;
    padding: 10px;
    background: #fff;
    box-shadow: 0 0 10px #000;
    border-radius: 10px;
}
.header-popup{
    text-align: center;
    padding: 7px 0;
    font-size: 18px;
    background: #6f848f;
    color: #fff;
    border-radius: 10px;
}
.content-popup {
    font-size: 18px;
    text-align: center;
    padding: 10px 0;
}
.content-popup form .row-form input{
    width: 100%;
}
.content-popup form .row-form-btn input{
    width: 200px;
}
.closePopup{
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 30px;
    color: #fff;
    cursor: pointer;
}
.footer-popup{
    padding: 10px 0 0 0;
    text-align: right;
}
.button-standard{
    font-size: 16px;
    padding: 8px;
    min-width: 150px;
}
.error{
    color: red;
}
.success{
    color: #35bf48;
}
.number-seats{
    margin-top: -15px;
    margin-bottom: 30px;
    text-align: center;
    font-size: 60px;
    font-weight: bold;
}
.text-number-seats{
    font-size: 14px;
}
.end-webinar, .block-webinar, .expel-webinar, .exit-webinar{
    font-size: 32px;
    font-weight: bold;
    text-align: center;
    width: 350px;
    max-width: 95%;
    margin: 0 auto;
    box-shadow: 0 0 20px rgb(0 0 0 / 35%);
    padding: 20px;
    box-sizing: border-box;
    background: #30a740;
    border-radius: 20px;
    border: 1px solid #e1e1e1;
    color: #fff;
}
.block-webinar{
    font-size: 28px;
    background: #fb4455;
}
.expel-webinar{
    font-size: 22px;
    background: #fb9844;
}
.expel-webinar p{
    color: #333;
}
.exit-webinar{
    font-size: 26px;
    background: #30a740;
}



/*media*/
@media screen and (max-width: 768px){
    .login {
        width: 95%;
    }
    .block-webinar {
        font-size: 22px;
    }
}