@charset "utf-8";
/* CSS Document */

main#main .loginbox-mainscreen {
	padding: 70px;
	max-width: 400px;
	background: var(--bgf4f4);
	display: block;
	-webkit-box-shadow: var(--boxshadows-small);
	-moz-box-shadow: var(--boxshadows-small);
	box-shadow: var(--boxshadows-small);
	margin: 0 auto;
}

 /* Style the tab */
.tab {
	border-bottom: 2px solid #ccc;
	height: auto;
	min-height: 36px;
	position: relative;
	background: rgba(0, 0, 0, 0) !important;
	z-index: 1 !important;
	text-align: center;
}

/* Style the buttons that are used to open the tab content */
.tab button {
	width: 50%;
	float: none;
	padding: 0px 8px 20px 20px;
	border: none;
	outline: none;
	top: 4px;
	cursor: pointer;
	transition: 0.3s;
	position: relative;
	background: transparent !important;
	z-index: 2 !important;
	color: #666666;
	font-size: 15px;
}

.tab button:nth-child(1)::before {
	background: #666;
	mask-image: url(../images/icons/avatar.svg);
	mask-repeat: no-repeat;
	mask-size: contain;
	mask-position: 50%;
	width: 20px;
	height: 23px;
	content: "";
	position: absolute;
	left: calc(50% - 60px);
	top: calc(50% - 21px);
}

.tab button:nth-child(2)::before {
	background: #666;
	mask-image: url(../images/icons/track.svg);
	mask-repeat: no-repeat;
	mask-size: contain;
	mask-position: 50%;
	width: 20px;
	height: 23px;
	content: "";
	position: absolute;
	left: calc(50% - 85px);
	top: calc(50% - 21px);
}

.tab button::after {
	border-bottom: 4px solid transparent;
	width: 100%;
	display: block;
	position: absolute;
	bottom: 1px;
	left: 0;
	content: "";
}

/* Change background color of buttons on hover */
.tab button:hover {
}

/* Create an active/current tablink class */
.tab button.active {
}

.tab button.active::after {
	border-bottom: 4px solid var(--openblue);
}

/* Style the tab content */
.tabcontent {
  display: none;
  border-top: none;
}

#Kundenlogin.tabcontent h1,
#Sendungsverfolgung.tabcontent h1 {
	font-weight: 300;
	font-size: 20px;
	padding: 35px 60px;
	text-align: center;
	color: #999;
}

#Kundenlogin.tabcontent input[type="text"],
#Kundenlogin.tabcontent input[type="password"],
#Sendungsverfolgung.tabcontent input[type="text"],
#Sendungsverfolgung.tabcontent input[type="password"] {
	width: calc(100% - 30px);
	padding: 10px 15px;
	border: 1px solid #ddd;
	font-size: 14px;
}

#Kundenlogin.tabcontent input[type="text"],
#Sendungsverfolgung.tabcontent input[type="text"],
#Sendungsverfolgung.tabcontent input[type="password"] {
	margin-bottom: 15px;
}

#Kundenlogin.tabcontent input[type="submit"],
#Sendungsverfolgung.tabcontent input[type="submit"] {
	background: #dddddd;
	width: calc(100% - 0px);
	padding: 15px;
	color: #999;
	font-size: 14px;
	border: none;
	cursor: pointer;
}

#Kundenlogin.tabcontent input[type="submit"]:hover,
#Sendungsverfolgung.tabcontent input[type="submit"]:hover {
	background: var(--openblue);
	color: #FFF;
}

#Kundenlogin.tabcontent .passforg {
	margin-top: 10px;
	margin-bottom: 15px;
	color: var(--openblue);
	font-size: 14px;
	display: block;
}

#Kundenlogin.tabcontent .passforg:hover {
	text-decoration: underline;
}

.login-infos {
	text-align: center;
	margin: 35px 0;
}

.login-infos p {
	padding: 0;
	line-height: 26px;
	color: var(--bgmaaa);
}

.login-infos p.phone {
	margin-top: 20px;
	margin-bottom: 5px;
}

.login-infos p.phone a,
.login-infos p.mail a {
	position: relative;
	color: var(--bgmaaa);
}

.login-infos p.phone a::before {
	background: var(--bgmdark);
	mask-image: url(../images/icons/avatar.svg);
	mask-repeat: no-repeat;
	mask-size: contain;
	mask-position: 50%;
	width: 20px;
	height: 23px;
	content: "";
	position: absolute;
	left: calc(50% - 110px);
	top: calc(50% - 11px);
}

.login-infos p.mail a::before {
	background: var(--bgmdark);
	mask-image: url(../images/icons/envelope.svg);
	mask-repeat: no-repeat;
	mask-size: contain;
	mask-position: 50%;
	width: 20px;
	height: 23px;
	content: "";
	position: absolute;
	left: calc(50% - 130px);
	top: calc(50% - 11px);
}