/* -----------------------------
 * VISUMPOINT PASSWORT, BENUTZER, LOGIN/REGISTRIERUNG 2024
 * Version 1.0 - 17.10.2024
 * Author: Digital & Wiesen - www.digitalundwiesen.de
 *
*/


.fullscreen {
	position: absolute;
	width: 100%;
	min-height: 100vH;
	display: flex;
}
.fullscreen > .content_wrapper {
    flex-basis: 50%;
    padding: 30px 50px 0;
    display: flex;
    justify-content: flex-end;
}
.fullscreen > .content_wrapper .content {
	max-width: 600px;
	width: 100%;
	display: flex;
    flex-direction: column;
    justify-content: flex-start;
    position: relative;
    justify-content: space-between;
}
.fullscreen > .content_wrapper .logo-container {
	margin-bottom: 20vH;
	margin-bottom: 40px;
}
.fullscreen > .content_wrapper .passwort_form {
	padding: 40px;
}
.fullscreen > .content_wrapper .h3 {
	margin: 0 0 30px;
}
.fullscreen > .content_wrapper .passwort_form input:not(.button) {
	width: 100%;
	margin-bottom: 15px;
}
.fullscreen > .grafik, .fullscreen > .div_rechts {
	flex-basis: 50%;	
	display: flex;
}
.fullscreen > .content_wrapper .passwort_form .button,
.fullscreen > .content_wrapper .passwort_form .load-more-btn {
	width: 100%;
}
.fullscreen > .content_wrapper .form_btns {
	display: flex;
	gap: 15px;
	margin: 20px 0;
}
.fullscreen > .content_wrapper .site-footer {
	background-color: #fff;
	border-top: 1px solid #aaabac;
	position: absolute;
	bottom: 0;
	width: 100%;

	position: relative;
        margin-top: 40px;
}


.fullscreen > .grafik svg {
    max-width: 45vw;
    position: absolute;
    right: 0;
    top: 25vh;
}


/*login registrierung*/


.tab {
    display: flex;
	border-radius: 30px 30px 0 0;
	background-color: #f3f3f3;
}
.tab .reiter {
	padding: 15px 30px;
	width: 50%;
	text-align: center;
	font-weight: 600;
	cursor: pointer;
}
.tab .reiter.active {
 	border-radius: 30px 30px 0 0;
   background-color: var(--main-color-light-grey);
}


#login.fullscreen > .content_wrapper .passwort_form {
	border-radius: 0 0 30px 30px;
	display: none;
}
#login.fullscreen > .content_wrapper .passwort_form.active {
	display: block;
}
#login.fullscreen > .content_wrapper .passwort_form .form_zwei_spalten {
    display: flex;
    gap: 12px;
}
@media only screen and (max-width: 1199px) 
{
	#login.fullscreen > .content_wrapper .passwort_form .form_zwei_spalten {
	    display: block;
	}
	.fullscreen > .content_wrapper .logo-container {
	    margin-bottom: 10vH;
	}
}

.div_rechts .wrapper {
 	display: none;
   	flex-direction: column;
    gap: 30px;
    padding: 30px 50px;
    max-width: 600px;
    width: 100%;
    justify-content: center;
}
.fullscreen > #info_wrapper .wrapper{
	display: none;
}
.fullscreen > #info_wrapper .wrapper.active{
    display: flex;
}

.div_rechts .wrapper .h3{
    line-height: 1.3;
}
.icon-list-item {
    display: grid;
    flex-wrap: wrap;
    gap: 2vw;
    grid-template-columns: 1fr 9fr
}
.icon-list-item .img_wrapper {
    text-align: center;
    width: 50px;
}
.icon-list-item .img_wrapper svg {
	height: 55px;
}
.wrapper .icon-list-item:nth-child(2) .img_wrapper svg {
	margin-left: -5px;
}
.wrapper .icon-list-item:nth-child(3) .img_wrapper svg {
	margin-left: -17px;
}
.logo_leiste {
    display: flex;
    flex-direction: row;
    gap: 60px;
    justify-content: flex-start;
    flex-wrap: wrap;
}
.logo_leiste img {
    height: 50px;
   	max-width: 15vw;
    width: fit-content;
}

input[type="password"] {
    color: var(--main-color-fonts);
    border: 1px solid var(--main-color-fonts);
    background-color: transparent;
    padding: 5px 10px;
    appearance: none;
}
input[type="password"]:focus, textarea:focus {
	outline: none;
	border-color: var(--main-color-red);
	border-radius: 0;
}

.navi ul {
    display: flex;
    flex-direction: row;
    align-items: center;
    list-style: none;
    padding: 0;
    margin: 0;
}
.navi li:not(:last-child) a {
    display: inline-block;
    line-height: 1;
    margin-right: 10px;
    padding-right: 10px;
    border-right: 1px solid var(--main-color-dark-grey);
}


@media only screen and (max-width: 1199px) 
{
	.fullscreen > .grafik svg {
	    top: 30vh;
	}
	.fullscreen > .content_wrapper .form_btns {
		flex-wrap: wrap;
	}
	.logo_leiste {
    	gap: 2vW;
    }
}

@media only screen and (min-width: 992px) 
{
	#info_wrapper #content_registrierung > p {
			margin-top: -50px;
	}
}

@media only screen and (max-width: 991px) 
{

	.fullscreen {
		flex-direction: column-reverse;
        /*padding-top: 80px;*/
	}

	.fullscreen > .content_wrapper {
		flex-basis: 100%;
		padding: 30px 30px 0;
	}
	.fullscreen > .content_wrapper .content {
		position: static;
		max-width: 100%;
		width: 100%;
		justify-content: space-between;
	}
	.fullscreen > .content_wrapper .form_btns {
		flex-wrap: nowrap;
	}
	.fullscreen > .content_wrapper .passwort_form .button,
	.fullscreen > .content_wrapper .passwort_form .load-more-btn {
		width: auto;
	}
	.fullscreen > .grafik {
		display: none !important;
	}
	.fullscreen > #info_wrapper .wrapper {
		max-width: 100%;
	}
	.fullscreen > #info_wrapper
	{
		background: #fff;
		margin-top: 80px;
	}
	.fullscreen > .content_wrapper .logo-container {
	    margin-bottom: 40px;
	    position: absolute;
	    top: 30px;
	}

	.fullscreen > .content_wrapper .site-footer {
		position: relative;
		margin-top: 140px;
	}

	.logo_leiste {
		position: absolute;  
	    bottom: 120px;
	    left: 30px;
	    width: 90%;
        justify-content: space-evenly;
	}
}
@media only screen and (max-width: 767px) 
{
	.mobile-no-margin {
		margin: 0 -30px;
	}
	.tab {
 	   border-radius: 0;
	}
	.tab #anmelden.active {
	    border-radius: 0 30px 0 0;
	}
	.tab #registrieren.active {
	    border-radius: 30px 0 0 0;
	}
	#login.fullscreen > .content_wrapper .passwort_form {
	    border-radius: 0;
	}

	.fullscreen > #info_wrapper > div
	{
		padding-left: 20px;
		padding-right: 20px;
	}
	.logo_leiste {
		position: absolute;  
	    bottom: 120px;
	    left: 20px;
	    width: 90%;
        justify-content: space-evenly;
	}
	.logo_leiste img {
	    max-width: 20vw;
	}
}

@media only screen and (max-width: 599px) 
{
	.fullscreen > .content_wrapper .form_btns {
		flex-wrap: wrap;
	}
	.fullscreen > .content_wrapper .passwort_form .button,
	.fullscreen > .content_wrapper .passwort_form .load-more-btn {
		width: 100%;
	}
	.fullscreen input[type="text"], .fullscreen textarea {
		min-width: unset;
    }
    #login.fullscreen > .content_wrapper .passwort_form .form_zwei_spalten {
	    flex-direction: column;
	    gap: 0px;
	}

}
@media only screen and (max-width: 439px) 
{
	.mobile-no-margin {
		margin: 0 -20px;
	}
	.fullscreen > .content_wrapper {
	    padding: 30px 20px 20px;
	}
	.fullscreen > .content_wrapper .passwort_form {
		padding: 40px 20px;
	}
}


