.main__title {
    margin-bottom: 50px;
    margin-top: auto;
}
.page-container {
/*    min-height: calc(100vh - 400px);	*/
	display: flex;
	height: 100%;
	min-height: 600px;
	margin-top: 50px;
}
.page-content {
    width: 100%;
    max-width: 800px;
    line-height: 24px;
	margin-top: 30px;
}
.page-content > p {
	margin-bottom: 10px;
	text-align: justify;
	line-height: 18px;
	font-size: 14px;
}
.page-content > p > a {
    color: var(--pink);
    text-decoration: underline;
}
.page-access {
	display: flex;
    flex-wrap: wrap;
	width: 100%;
	justify-content: space-between;
}
.page-access__player {
	width: 65%;
    border-radius: 16px;
    overflow: hidden;
	min-height: 400px;
}
.page-access__player > iframe {
	width: 100%;
	height: 100%;
}
.page-access__info {
    padding: 20px 30px;
    flex-direction: column;
    box-sizing: border-box;
/*    position: sticky;*/
/*    top: 0;*/
/*    align-self: flex-start;*/
    display: flex;
    width: 30%;
}
.page-access__info--line {
	display: flex;
    justify-content: space-between;
    margin: 10px 0;
    border-bottom: 1px #ccc dashed;
    padding-bottom: 10px;
}
.page-access__info--line > .label {
	font-weight: 500;
	width: 50%;
}
.page-access__info--line > .value {
	position: relative;
	width: auto;
    margin-left: 2%;
    display: flex;
    align-items: center;
}
.form-access {
    width: 70%;
    max-width: 100%;
    background-color: var(--milk);
    padding: 30px;
    border-radius: 16px 0px 0px 16px;
    margin: auto;
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
    align-items: center;
    flex-wrap: wrap;
    height: 100%;
	justify-content: flex-start;
}
.form-access__error {
	max-width: 500px;
    margin-bottom: 20px;
    color: var(--pink);
    border: 1px #ccc solid;
    padding: 20px 10px;
    border-radius: 16px;
    text-align: center;	
}
.form-access__error > p {
	margin: 0;
}
.form-access__error > p > a {
    color: var(--pink);
    text-decoration: underline;
}
.form-access__reason {
	margin: auto;
    font-size: 33px;
    text-align: center;
    max-width: 700px;
    font-weight: 500;
    padding: 0 20px;	
}
.form-access__reason > span {
	color: var(--pink);
}
.form-access__reason > p {
	margin: 0;
	font-size: 24px;
	margin-top: -20px;
}
.form-access__reason > p > a {
	text-decoration: underline;
}
.form-access > label {
	color: var(--vpotoke);
    display: block;
    max-width: 400px;
    margin-bottom: 20px;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 20px;
}
.form-access__bottom {
	display: flex;
	width: 100%;
	flex-wrap: wrap;
	max-width: 550px;
	margin-bottom: auto;
}
.form-access__bottom > input[type="email"] {
    width: 60%;
    position: relative;
	padding-right: 65px;
    left: 30px;
    font-family: 'Montserrat', sans-serif;
}
.form-access__bottom > input[type="submit"] {
	height: 50px;
    margin-top: 0;
    width: 40%;
    font-size: 16px;
    position: relative;
    left: -30px;
    z-index: 1;
    font-family: 'Montserrat', sans-serif;
}
.form-access__bottom > label.form-access__checkbox {
	width: 100%;
    padding: 0 30px;
    margin-top: 20px;
    display: flex;
	align-items: center;
	font-size: 14px;
	opacity: 0.6;
	line-height: 16px;
}
.form-access__bottom > label.form-access__checkbox a {
	text-decoration: underline;
	font-size: 14px;
	line-height: 16px;
}
.image-access {
	overflow: hidden;
    width: 30%;
    border-radius: 0px 16px 16px 0px ;
}
.image-access > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
@media screen and (max-width: 1350px) {
	.page-access__player {
		width: 55%;
		max-height: 360px;
	}
	.page-access__info {
		width: 45%;
	}
}
@media screen and (max-width:991px) {
	.page-container {
		display: block;
	}
	.page-access__player {
		width: 100%;
		max-height: 500px;
		min-height: 360px;
	}
	.page-access__info {
		padding: 20px 0;
		width: 100%;
	}
	.form-access {
		width: 100%;
		min-height: 500px;
		border-radius: 16px 16px 0px 0px;
	}
	.image-access {
		width: 100%;
		border-radius: 0px 0px 16px 16px;
	}
}
@media screen and (max-width: 650px) {
	.form-access {
		min-height: 400px;
	}
	.form-access__reason {
		font-size: 26px;	
	}
	.form-access__reason > p {
		font-size: 20px;
		margin-top: -10px;
	}
	.form-access__bottom > input[type="email"] {
		width: 100%;
		padding-right: 24px;
		left: 0;	
		max-width: 400px;
		margin: 0 auto;
		text-align: center;
	}
	.form-access__bottom > input[type="submit"] {
		width: 100%;
		left: 0;
		max-width: 400px;
		margin-top: 10px;
	}
}
@media screen and (max-width: 450px) { 
	.page-access__player {
		min-height: 250px;
	}
	.form-access {
		padding: 20px 10px;
	}
	.form-access__reason {
		font-size: 22px; 
	}
	.form-access__reason > p {
		font-size: 18px;
		margin-top: 0;
	}
	.main__title {
		margin-bottom: 20px;
	}
	.form-access > label {
		font-size: 16px;
	}
	.form-access__bottom > label.form-access__checkbox {
		padding: 0 10px;
	}
}