/* CSS Document */
html
{
	height:100%;
	width:100%;
}
a:link,a:active,a:visited
{
	color: inherit;
	text-decoration: none;
}
a:hover
{
	text-decoration: underline;
}

body {
	background: #FFFFFF url(/html/img/bg.png);
	background-repeat: no-repeat;
	background-size: cover;
	font-family: Cabin, sans-serif;
	font-size: 12px;
	color: #100c08;
	margin: 2.5%;
	padding-bottom: 0px;
	/* background: linear-gradient(to left, #58595b, #100c08); */
}


.Main_container {
	background: white;
	max-width: 940px;
	height: 500px;
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	font-family: Montserrat;
	padding: 10px;
	padding-bottom: 0px;
}



.top_container {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	padding-bottom: 10px;
	flex: 4;
}
img {
	height: 90px;
	object-fit: contain;
}
.top_left_container{
	display: flex;
	flex: 1;
	flex-direction: column;
	justify-content: space-between;
	margin-right: 20px;
	align-content: center;
	min-height: 100px;
	margin-bottom: 50px;
}

.top_left_container_logo {
	display: flex;
	flex-direction: column;
	margin-left: 10px;
}

.top_left_container_menu {
	background-color: #100c08;
	color: white;
	display: flex;
	flex-direction: column;
	padding: 10px;
	padding-right: 0px;
	padding-bottom: 30px;
	width: 100%;
}

.menu_row {
	padding: 5px;
}

.menu_arrow {
	max-height: 12px;
}

.top_right_container {
	display: flex;
	flex-direction: column;
	flex: 4;
	justify-content: flex-start;
}


.top_right_container_link{
	display: flex;
	background: black;
	color: white;
	height: 45px;
	justify-content: space-between;
	padding: 5px;
	padding-left: 10px;
	padding-right: 10px;
}

.top_right_container_link_hyperlink {
	border-radius: 99px;
	background: #ff6900;
	padding: 5px;
	padding-left: 10px;
	padding-right: 10px;
}
.top_right_container_link_hyperlink a:hover {
	text-decoration: none;
}

.top_right_container_info{
	display: flex;
	flex-direction: column;
	background: #ff6900;
	justify-content: flex-start;
	padding-left: 50px;
	color: white;
}

.info_title {
	font-size: 18px;
	padding-top: 20px;
    padding-right: 8px;
    padding-bottom: 5px;
}

.form_title {
	font-weight: 700;
	font-size: 32px;
	padding-right: 8px;
	padding-bottom: 5px;
	margin-bottom: 20px;
}

.info_content {
	font-size: 11px;
	color: black;
	padding-top: 5px;
    padding-right: 5px;
    padding-bottom: 20px;
}

.form_box {
	display: flex;
	background: rgb(0,0,0,0.1);
	height: 100%;
	padding: 20px;
	padding-left: 50px;
}

.form_box_insert {
	display: flex;
	padding-bottom: 10px;
	padding-right: 90px;
	justify-content: space-between;
}

.insert_login {
	padding-left: 37px;
}

.insert_password {
	padding-left: 50px;
}

.form_box_pswrecover {
	font-size: 9px;
}
.form_box_button {
	display: flex;
	flex-direction: row-reverse;
}

button:hover {
	cursor: pointer;
}

.button_send {
	border-radius: 99px;
	background: #ff6900;
	border-width: 0px 0px 0px 0px;
	color: white;
	width: 80px;
	height: 19px;
	text-transform: uppercase;
}
.bottom_container {
	display: flex;
	flex: 1;
	flex-direction: column;
	align-items: center;
}

.bottom_container_link{
	display: flex;
	background: black;
	color: #ff6900;
	height: 25px;
	justify-content: space-between;
	padding: 5px;
	padding-left: 10px;
	padding-right: 10px;
	width: 100%;
}

.bottom_container_logo {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-content: center;
	max-width: fit-content;
	padding-top: 10px;
}
.bottom_container_logo {
	max-width: 70px;
	height: auto;
}
/* 
Esempi per ottimizzare
*/

.center_text {
	align-items: center;
}

.right_text {
	justify-content: flex-end;
}

.left_text {
	justify-content: flex-start;
}

.smooth_border {
	border-radius: 10px;
	border: 2px solid lightgrey;
}

.margin_top {
	margin-top: 10px;
}

.margin_bot {
	margin-bottom: 10px;
}

.margin_bottom {
        margin-bottom: 10%;
}