main.main {
    height: 100vh;
    width: 100%;

    display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	justify-content: flex-start;
	align-items: center;
	align-content: stretch;

    background: url(../img/bg.jpg) no-repeat center center / cover;
}
.title {
    font-size: 45px;
    text-align: center;
    font-weight: 700;
    margin-bottom: 0.5em;
}
.subtitle {
    font-size: 25px;
    text-align: center;
    font-weight: 700;
    margin-bottom: 3em;
}
.subtitle span,
.title span {
    color: #969df7;
}
.formbox {
    display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	justify-content: flex-start;
	align-items: stretch;
	align-content: stretch;
    background: #f9fdff;
    border-radius: 60px;
    -webkit-box-shadow: 0 0 117px 50px rgba(175,181,255,0.28);
box-shadow: 0 0 117px 50px rgba(175,181,255,0.28);
}
.formbox-left {
    background: #9ea5fa;
    color: #fff;
    display: flex;
	flex-direction: column;
	flex-wrap: nowrap;
	justify-content: center;
	align-items: center;
	align-content: center;
    width: 40%;
    border-radius: 60px;
    text-align: center;
    gap: 1.5em;
    padding: 40px 20px;
}

.formbox-left__tlt {
    font-size: 25px;
    font-weight: 700;
    line-height: 1.2em;
}
.formbox-left__img {
}
.formbox-left__txt {
    font-size: 16px;
    font-weight: 500;
    line-height: 1.4em;
}


.formbox-right {
    width: 60%;
    padding: 40px 0;
    display: flex;
	flex-direction: column;
	flex-wrap: nowrap;
	justify-content: center;
	align-items: stretch;
	align-content: center;
    gap: 1em;
}
.formbox-right__txt {
    font-size: 18px;
    display: block;
    padding: 0 50px;
}
.formbox-right__list {
    font-size: 16px;
    background: #f2f6ff;
    display: block;
    padding: 10px 50px;
}
.formbox-right__list li {
    display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	justify-content: flex-start;
	align-items: center;
	align-content: stretch;
    gap: 1em;
}
.formbox-right__list img {

}
.formbox-right__list span {

}
.rules {
    font-size: 15px;
    padding: 20px 0 0;    
    display: grid;
    grid-template-columns: 40px auto;
    grid-template-rows: 1fr;
    line-height: 1.2em;
    color: #666;
}
.rules .checkbox {
    grid-area: 1/1/2/2;
    position: relative;
    top: 3px;
}
.rules label {
    grid-area: 1/2/2/3;
}

.corrections {
    padding: 0;
    margin: 8px auto;
    width: 300px;
    background-color: #d0e9ff;
    border-radius: 4px;
    overflow: hidden;
    text-align: left;
    opacity: 0.7;
  }
  .correctionsItem {
    list-style: none;
    color: black;
    padding: 8px;
  }
  .correctionsItem:hover {
    background-color: #59f5cc;
    cursor: pointer;
  }
  .correctionsItem + .correctionsItem {
    border-top: solid 1px #e2e2e2;
  }


/*-------------------------------------- Media Queries ----959---------------------------------*/
@media screen and (max-width: 979px) {
    .formbox-left,
    .formbox-right {
        width: 100%;
    }
    .formbox {
        display: flex;
	flex-direction: column;
	flex-wrap: nowrap;
	justify-content: flex-start;
	align-items: stretch;
	align-content: stretch;
    }
    .title {
        font-size: 40px;
    }
    .subtitle {
        font-size: 20px;
        margin-bottom: 2em;
    }
    .formbox-left {
        display: grid;
        grid-template-areas: 
                    "a a a"
                    "b c c";
        border-radius: 40px;    
        padding: 30px 20px;                
    }
    .formbox-left__tlt {
        grid-area: a;
    }
    .formbox-left__img {
        grid-area: b;
        width: 80px;
        margin: 0 auto;
    }
    .formbox-left__txt {
        grid-area: c;
    }
    .formbox-left__tlt {
        font-size: 22px; 
    }
    .formbox-right {
        padding: 20px 0 40px;
        
    }
    
}
/*-------------------------------------- Media Queries ----639---------------------------------*/
@media screen and (max-width: 659px) {

    main.main {
       
    }
    .title {
        font-size: 30px;
    }
    .formbox-left {  
        padding: 20px;                
    }
    
    

    
    
}







