/*
// Copyright (c) 2009-2024 Grigore Stefan <g_stefan@yahoo.com>
// MIT License (MIT) <http://opensource.org/licenses/MIT>
// SPDX-FileCopyrightText: 2009-2024 Grigore Stefan <g_stefan@yahoo.com>
// SPDX-License-Identifier: MIT

*/

body{
	background-color: #4FC1E9;
	background: linear-gradient(120deg, #93D9F2 0%, #93D9F2 10%, #4FC1E9 40%, #4FC1E9 60%, #1AA2D1 90%, #1AA2D1 100%);
	height: auto !important;
}

@media only screen and (min-width: 600px) {

	body{
		padding-top: 64px !important;
	}

}

.xui.application-form {
	padding-top: 0px !important;
}

.xui.panel {
	overflow: hidden;
	border: 0px solid #000000 !important;
	border-radius: 0px !important;
}

@media only screen and (min-width: 600px) {
	.xui.panel {
		overflow: hidden;
		border-top-left-radius: 3px !important;
		border-top-right-radius: 3px !important;
		border-bottom-left-radius: 3px !important;
		border-bottom-right-radius: 3px !important;
	}
}

.xui.panel > .xui._title {
	text-align: center !important;
	height: 60px;
	font-size: 20px;
	line-height: 24px;
	padding-top: 20px !important;
	background-color: #EEEEEC;
	color: #000000;
}

.xui.panel > .xui._title + .xui._line{
	display: none;
}

@media only screen and (min-width: 600px) {

	.xui.box.-x1x1 {
	    min-width: 320px;
	    max-width: 420px !important;
	    margin-left: auto;
	    margin-right: auto;
	    padding-left: 16px;
	    padding-right: 16px;
	}

}

.xui.panel > .xui._content .xui.separator{
	margin-top: 16px !important;
}

.xui.panel > .xui._content .xui.button.-primary{
	width: 144px;
}

.xui.panel > .xui._title::after{
	content: "";
	position: absolute;
	top: 0px;
	left: 0px;
	width: 4px;
	height: 40px;
	margin-top: 10px;
	background-color: #204a87;
	box-sizing: border-box;

	border-top-left-radius: 0px;
	border-top-right-radius: 4px;
	border-bottom-left-radius: 0px;
	border-bottom-right-radius: 4px;

	overflow: hidden;
}


