html,
body{
	width:100%;
	height:100%;
}

html{
	background: url(https://meirkids.co.il/uploadimages/reg/set_bg.jpg) no-repeat center / cover;
	background-attachment: fixed;
}

body {
	font-family: Arial, sans-serif;
	margin: 0;
	padding: 0;
}

#app{
	display: flex;
	min-width:100%;
	height:100%;
	justify-content: center;
	align-items: center;
}

.logo{
	text-align: center;
}

.container {
	flex:1;
	align-self: center;
	max-width: 460px;
	padding: 30px;
	margin: 40px auto;
	border-radius: 14px;
	background: rgba(255,255,255,0.95);
	box-shadow: 0 0 10px rgba(0,0,0,0.12);
}

h1 {
	color: #444;
	font-size: 32px;
	text-align: center;
	margin-bottom: 20px;
}

h2 {
	color: #444;
	font-size: 20px;
	line-height:26px;
	text-align: center;
	margin-bottom: 20px;
}

.smaller {
	color: #444;
	font-size: 16px;
	text-align: center;
}

.cancelation-msg {
	color: #444;
	font-size: 14px;
	text-align: center;
	margin-bottom: 25px;
}

label {
	color: #333;
	font-weight: bold;
	display: block;
	margin-bottom: 6px;
}

input[type="text"],
input[type="email"],
input[type="password"],
input[type="tel"],
input[type="number"] {
	width: 100%;
	padding: 12px;
	border: 1px solid #ccc;
	margin-bottom: 15px;
	border-radius: 6px;
	font-size: 16px;
	box-sizing: border-box;
}

 input[type="email"]{
	text-align: left;
	direction: ltr;
 }

input.error {
	border-color: #e74c3c;
	background: #fff6f6;
}

.btn {
	color: white;
	font-size: 18px;
	text-decoration: none;
	width: 100%;
	padding: 14px;
	border: none;
	border-radius: 8px;
	background-color: #ff9800;
	cursor: pointer;
}

.btn:hover {
	background-color: #e68900;
}

body.loading .btn{
	background-image: url(../img/ajax-loader.gif);
	background-repeat: no-repeat;
	background-position: 15px center;
	background-size: auto 20px;
}

#form-msgs{
	color: red;
	font-size: 15px;
	font-weight: 700;
	text-align: center;

	margin-bottom: 15px;
}

#form-msgs{
	display: none;
}

#form-msgs a{
	color:inherit;
}

#form-msgs.success{
	color: green;
}

.form-msgs-box {
	font-size: 18px;
	line-height:25px;
	text-align: center;
	padding: 20px;
}

#loginBtn{
	margin-top: 20px;
}

.hidden { display: none; }

/***********************************************************/
nav.tabs-nav {
	list-style: none;
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 0 20px;
	margin: 30px 0 0 0;
}

nav.tabs-nav a{
	color: #fff;
	font-weight: bold;
	cursor: pointer;
	padding: 15px 18px;
	border-radius: 10px 10px 0 0;
	text-decoration: none;
	background-color: #bbb;
}

nav.tabs-nav a.active{
	color:#000;
	background-color: #9cddf4;
}

.tab-content{
	padding: 20px;
	border-radius: 10px;
	background-color: #9cddf4;
}

.login-otp .otp-type-radio{
	display: flex;
	justify-content: center;
	text-align: center;
	margin:10px 0 20px 0;
}

.login-otp .otp-type-radio label{			
	position: relative;
	cursor: pointer;
	display: inline-block;
	padding: 10px 15px;
	overflow: hidden;
	border-radius: 0 10px 10px 0;
	background-color: rgba(255,255,255,0.5);
}

.login-otp .otp-type-radio label:has(input:checked){
	background-color: rgba(255,255,255,1);
}

.login-otp .otp-type-radio label:nth-child(2){			
	border-radius: 10px 0 0 10px;	
}

.login-otp .otp-type-radio input{
	position: absolute;
	lefT:-100px;
	top:-100px;
}

.login-otp #otp-step1:has(.otp-type-radio input[name="otp_type"]:checked[value="email"]) .otp-type-phone{
	display: none;
}

.login-otp #otp-step1:has(.otp-type-radio input[name="otp_type"]:checked[value="phone"]) .otp-type-email{
	display: none;
}

.login-otp #otp-step2{
	display: none;
}

.otp-code-label{
	text-align: center;
}


/***********************************************************/
@media only screen and (max-width : 400px) {

	#app{
		min-height:100%;
		height:auto;
	}

	.container {
		max-width: 80%;
	}

	h1 {
		font-size: 26px;
	}

	h2 {
		font-size: 18px;
		margin-bottom: 20px;
	}

	.success-box, .fail-box {
		font-size: 15px;
		line-height:25px;
		padding: 20px;
	}

}