/* SourceSansPro */
@font-face {
	font-family: 'SourceSansPro-Regular';
	font-style: normal;
	font-weight: 400;
	src: url('/cas/fonts/SourceSansPro-Regular-be287df28238fc258575b79e4d496f57.ttf')
}

@font-face {
	font-family: 'SourceSansPro-Bold';
	font-style: normal;
	font-weight: 400;
	src: url('/cas/fonts/SourceSansPro-Bold-0ba2d24be70bc7071a5081e9baadcc4b.ttf')
}

:root {
	--uform-blue: #365676;
	--uform-red: #EB5D5B;
	--uform-box-shadow: 4px 4px 16px #00000029;
}

body {
	margin: 0;
	padding: 0;
}

.container {
	width: 100% !important;
	padding: 0 !important;
}

.header-container {
	width: 100% !important;
	background-color: var(--uform-blue);
	height: 50px;
}

.nav-main {
	width: 100% !important;
	height: 110px;
	box-shadow: var(--uform-box-shadow);
}

.main-navigation {
	padding: 6px 0;
	background: #FFFFFF 0% 0% no-repeat padding-box;
	display: flex;
	justify-content: center;
}

.uform-nav-container {
	width: 83%;
	display: flex;
	flex-direction: column;
	padding: 0;
}

.main-navigation-menu {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-top: 17px;
	margin-bottom: 6px;
	width: 100%;
}

.uform-navbar-logo {
	display: flex;
	align-items: center;
	padding-left: 40px;
}

.header-logo-picture {
	display: block;
	margin: auto;
	box-sizing: border-box;
}

.header-logo-main-img {
	/*background-image: url('/themes/azubishop/images/uform-logo-shop.png');*/
	background-size: contain;
	background-repeat: no-repeat;
	height: 65px;
	width: 130px;
	vertical-align: middle;
	box-sizing: border-box;
}

.nav-text-container {
	padding-right: 170px;
	width: 100%;
}

.nav-text {
	font-family: 'SourceSansPro-Bold', sans-serife;
	letter-spacing: 0px;
	color: var(--uform-blue);
	font-weight: bold;
	overflow-wrap: anywhere;
	font-size: 2.7rem;
	text-align: center;
	width: 100%;
}

.main-container {
	margin-top: 60px !important;
	width: 400px;
	margin: auto;
	height: fit-content;
}

.headline {
	color: var(--uform-blue);
	text-align: center;
	width: 100%;
	margin-bottom: 40px;
	font-family: 'SourceSansPro-Bold', sans-serife;
	font-weight: bold;
}

.input-form {
	width: 100%;
	display: flex;
	flex-direction: column;
}

.login-input {
	position: relative;
	margin-bottom: 20px;
}

.form-field-input {
	width: 100%;
	border-radius: 5px;
	height: 40px;
	padding: 8px;
	border: 1px solid #bcc1c7;
	transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
	outline: none;
	font-family: 'SourceSansPro-Regular', sans-serife;
}

.form-field-input:focus {
	border-color: #365676;
	box-shadow: 0 0 0 0.25rem rgba(54, 86, 118, 0.25);
}

.login-input:focus-within .form-label,
.form-field-input:valid + .form-label,
.form-label.label-filled {
    top: -8px;
    font-size: 10px;
}

.form-label {
	color: #00000091;
	position: absolute;
	left: 5px;
	top: 12px;
	pointer-events: none;
	background-color: white;
	padding: 0 5px;
	transition: 0.2s ease-out;
	font-weight: 400 !important;
	font-family: 'SourceSansPro-Regular', sans-serife;
}

.link {
	color: var(--uform-blue);
	text-decoration: none;
	margin-top: -10px;
	text-align: left;
	font-family: 'SourceSansPro-Regular', sans-serife;
}

.blue-link {
	color: var(--uform-blue);
	font-size: 12px;
}

.red-link {
	color: var(--uform-red);
	font-weight: bold;
}

.submit-button {
	background-color: var(--uform-red);
	width: 100%;
	border: none;
	height: 52px;
	padding: 5px 25px;
	display: flex;
	justify-content: center;
	align-items: center;
	border-radius: 0 20px;
	margin-top: 30px;
}

.submit-button:hover {
	background-color: darken(#EB5D5B, 5%) !important;
	cursor: pointer;
}

.button-text {
	color: white;
	font-size: 20px;
	font-weight: bold;
	letter-spacing: 0;
	font-family: 'SourceSansPro-Bold', sans-serife;
}

.form-spacer {
	margin-top: 20px;
	margin-bottom: 20px;
	border: 1px solid #CEE0EA !important;
}

.form-subtext {
	text-align: center;
	width: 100%;
	font-family: 'SourceSansPro-Regular', sans-serife;
}

.info-box {
    background-color: #ECF3F7;
    border: 0px solid #ECF3F7;
    padding: 1px 15px;
    border-radius: 0 10px;
    font-family: Arial, sans-serif;
    color: #365676;
    margin-bottom: 20px;
}

.info-box p {
    margin: 10px 0;
}

.info-box a {
    color: #d9534f;
    text-decoration: none;
    font-weight: bold;
}

.info-box a:hover {
    text-decoration: underline;
}

@media ( max-width : 900px) {
	.nav-text {
		font-size: 2rem;
	}
}

@media ( max-width : 800px) {
	.main-navigation{
		padding: 20px 5%;
		width: 100%;
		margin:auto;
		justify-content: normal;
	}

	.uform-nav-container{
		width: 100%;
	}

	.nav-text {
		font-size: 2rem;
		overflow-wrap: anywhere;
		text-align: left;
	}
	.main-container {
		width: 90%;
	}
	.submit-button {
		height: 45px;
	}

	.nav-text-container {
		padding-right: 0;
		padding-left: 5px;
	}
	.uform-navbar-logo {
		padding-left: 0;
	}
	.header-logo-main-img {
		height: 40px;
		width: 80px;
	}
}

@media(max-width: 510px){
	.nav-text{
		font-size: 1.2rem;
	}
}