

#breakpoint-hinweis {
    display: none;
    text-align: center;
    margin-top: 20vh;
    font-size: 1.4rem;
    color: #b00000;
    padding: 20px;
    background-color: #fff0f0;
    border: 1px solid #b00000;
    border-radius: 8px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}


@media (max-width: 1439px) {
    body > *:not(#breakpoint-hinweis) {
        display: none !important;
    }

    #breakpoint-hinweis {
        display: block;
    }
}
@media (min-width: 1440px){
	
	body{
    font-family: "Montserrat", sans-serif;
}

header{
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    background-color: #ffffff;
    width: 100%;
    
}

header.scrolled {
    background: rgba(255, 255, 255, 0.95); 
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25); 
    width: 100%;
}

.top-bar{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
	margin-right: 32px;
}

.top-bar-metanav{
    display: flex;
    flex-direction: row;
    gap: 30px;
}
	
.top-bar-metanav a{
	text-decoration: none;
	color:#555555;
}

.top-bar-metanav-mobile{
    display: none;
}

.top-bar-hamburger{
    display: none;
}
 
.top-bar-logo img{
    width: 500px;  
    height: auto;
}

.welcome-container{
	width: 100%;
	max-width: 800px;
	margin: 150px auto;
	padding: 20px;
	display: flex;
	flex-direction: column;
	align-items: center;
}


form {
    display: flex;
    flex-direction: column;
    gap: 8px; 
    width: 100%;
    max-width: 400px; 
    margin: 40px auto;
}

input {
    padding: 15px; 
    font-size: 1.2rem; 
    border: 2px solid #179F82; 
    border-radius: 5px;
    outline: none; 
    transition: border-color 0.3s ease;
}

input:focus {
    border-color: #16A47D; 
}

button {
    padding: 15px 20px; 
    background-color: #179F82; 
    color: white; 
    font-size: 1.2rem; 
    border: none; 
    border-radius: 5px; 
    cursor: pointer; 
    transition: background-color 0.3s ease; 
    margin-top: 20px; 
}

button:hover {
    background-color: #179F00;
}

button:focus {
    outline: none; 
}

	
h1{
	color: #949494;
	font-size: 2em;
	text-align:center;
}
	
p{
	color: #000000;
	line-height: 1.6;
	font-size: 1.1em;
	margin: 20px 0;
}

.register-form{
    width: 100%;
	max-width: 800px;
	margin: 20vh auto;
	padding: 20px;
	display: flex;
	flex-direction: column;
	align-items: center;
}





}