@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed&display=swap');



body{
	/*background: url('/tema_lekkerland/static/img/lekkerland_login.jpg') no-repeat top fixed, linear-gradient(to right, #ee0979, #ff6a00);
  	background-size: contain;
  	background-blend-mode: overlay;*/
    padding: 0px;
    margin: 0;
    display: flex;
    flex-direction: column;
    height: 100vh;
    overflow: hidden;
}
body.subscribe{
	overflow-y: scroll;
}
nav{
	width: 100vw;
	min-height: 350px;
	align-items: start;
    display: flex;
    justify-content: center;
    background: url('/tema_lekkerland/static/img/lekkerland_login.jpg'), linear-gradient(180deg, rgba(252,192,96,1) 0%, rgba(255,250,244,1) 100%);
    background-repeat: no-repeat, no-repeat;
    background-position: center, center;
  	background-size: contain;
}
nav ul{
	display: flex;
	flex-direction: row;
	list-style:none;
	justify-content: center;
}
nav ul li{
	text-decoration: none;
	padding: 5px;
}
nav ul li a{
	text-decoration: none;
	text-transform: uppercase;
	display: block;
	font-family: 'Barlow Condensed', sans-serif;
	color: white;
	font-size: 22px;
	position: relative;

}
nav ul li a:after{
	content: ' ';
	position: absolute;
	bottom: -5px;
	height: 2px;
	width: 0%;
	background: white;
	left: 0px;
	transition: width 150ms;
}
nav ul li a:hover:after{
	width: 100%;
}
main{
	padding-top: 50px;
	
	width: 100vw;
	
	display: flex;
    flex-direction: column;
    background: white;
}
main.login{
	align-items: center;
}
main.subscribe{
	align-items: center;
}
/*main:before{
	content: ' ';
	position: absolute;
	bottom: -70px;
	height: 130%;
	width: 100%;
	background: white;
}*/
.title{
	display: none;
}
.title h1{
	color: white;
	text-transform: uppercase;
	font-family: 'Barlow Condensed', sans-serif;
	margin-left: 50px;
	font-size: 57px;
    letter-spacing: 8px;
}
main > section {
	position: relative;
}
.loginForm{
	width: 33%;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	max-height: 50vh;
	font-family: 'Barlow Condensed', sans-serif;
	border:  1px solid #ccc;
	border-radius: 8px 8px 30px 30px;
	box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;

}
.loginForm h2{
	margin-bottom: 30px;
}
.loginForm input{
	margin-bottom: 20px;
	font-size: 19px;
    border-radius: 6px;
    padding: 10px;
    box-shadow: none;
    border-width: 1px;
}
.loginForm button{
	width: 100%;
	background: black;
	color: white;
	height: 50px;
	border-radius: 0px 0px 30px 30px;
	border: 0px;
	transition: background 100ms;
}
.loginForm button:hover{
	background: #333;
	cursor: pointer;

}
.passwordDimenticata a{
	color: #aaa;
	margin-top: 20px;
}
.subscribeForm{
	width: 66%;
	display: flex;
	flex-direction: column;
	align-items: start;
	justify-content: center;
	font-family: 'Barlow Condensed', sans-serif;
	border:  1px solid #ccc;
	border-radius: 5px 5px 30px 30px;
	box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
	background: white;
	margin-bottom: 50px;
}
.subscribeForm h2{
	margin-bottom: 30px;
	margin-left: 15px;
}
.subscribeForm input{
	font-size: 19px;
    border-radius: 3px;
    padding: 10px;
    box-shadow: none;
    border-width: 1px;
    width: inherit;
    max-height: 45px;
}
.form_group_row {
	margin-bottom: 20px;
    display: flex;
    flex-direction: row;
    width: 100%;
    gap: 1rem;
    justify-content: center;
    align-items: end;
}
.subscribeForm button{
	width: 100%;
	background: black;
	color: white;
	height: 50px;
	border-radius: 0px 0px 30px 30px;
	border: 0px;
	transition: background 100ms;
	margin-top: 20px;
}
.subscribeForm button:hover{
	background: #333;
	cursor: pointer;

}
.subscribeForm > section{
	margin: auto;
    border: 1px solid #bbb;
    width: 90%;
    padding: 20px;
    border-radius: 5px;
}
.subscribe h2{
	z-index: 2;
	font-weight: 100;
}
label:not(.checkbox) 
 {
	margin-top: 20px;
    padding-left: 35px;
    font-size: 20px;
    padding-bottom: 5px;
    color: #bbb;
    text-transform: uppercase;
}
input.checkbox{
	width: 30px;
}
.checkContainer{
	display: flex;

}
textarea#note_cibo{
	width: 100%;
	border: none;
	 resize: none;
}
.selectContainer{
	width: 50%;
    display: flex;
    flex-direction: column;
}
select{
	height: 45px;
    font-size: 19px;
    border-radius: 3px;
}
.selectLabel{
	padding-bottom: 10px;
    
}
.j_hide{
	display: none;
}
.transparent{
	opacity: 0;
}
.overlay{
	opacity: 1;
	transition: opacity 200ms;
	position: fixed;
	z-index: 1000;
	width: 100vw;
	height: 100vh;
	left: 0;
	top: 0;
	background: #000000cc;

}
/* Smartphones (portrait and landscape) ----------- */
@media only screen
and (max-width : 480px) {
	.loginForm{
		width: 80%;
	}
	.subscribeForm{
        width: 100%;
    }
    .form_group_row{
    	flex-direction: column;
    }
    .selectContainer{
    	width: 100%;
    }
    main:before{
    	bottom: -120px;
    }
    main {
	    top: 350px;
	}
}
 
/* Smartphones (landscape) ----------- */
@media only screen
and (min-width : 321px) {

}
 
/* Smartphones (portrait) ----------- */

@media only screen
and (max-width : 768px) {
	.subscribeForm{
        width: 100%;
    }
}
 
/* iPads (portrait and landscape) ----------- */
@media only screen
and (min-width : 768px)
and (max-width : 1024px) {
	.loginForm{
		width: 50%;
	}
	
}
 
/* iPads (landscape) ----------- */
@media only screen
and (min-width : 768px)
and (max-width : 1024px)
and (orientation : landscape) {

}
 
/* iPads (portrait) ----------- */
@media only screen
and (min-width : 768px)
and (max-width : 1024px)
and (orientation : portrait) {
	
}
 
/* Desktops and laptops ----------- */
@media only screen
and (min-width : 1224px) {
/* Styles */
}
 
/* Large screens ----------- */
@media only screen
and (min-width : 1824px) {
/* Styles */
}
 
/* iPhone 4 ----------- */
@media
only screen and (-webkit-min-device-pixel-ratio : 1.5),
only screen and (min-device-pixel-ratio : 1.5) {
	.subscribeForm{
        width: 100%;
    }
}






