/* Grundlayout */
body {
    font-family: Arial, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    background-color: #C9D2D1;
	flex-direction: column;
}

.card {
    text-align: center;
    background-color: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    max-width: 300px;
    width: 100%;
}


.card_2 {
    text-align: center;
    width: 100%;
	bottom:0px
	position: fixed;
}

.header {
    max-width: 100%;
    margin-bottom: 0px;
}


.logo {
    max-width: 75%;
    margin-bottom: 0px;
}

.contact-img {
    width: 100%;
}

.login-link {
    display: block;
    margin-top: 20px;
    color: #333;
    text-decoration: none;
}

/* Responsive Design */
@media (min-width: 768px) {
    .card {
        max-width: 600px;
        padding: 40px;
    }
    
		
    .logo {
        max-width: 75%;
    }
    
	
	
    .header {
        max-width: 100%;
    }
    
    .contact-img {
        max-width: 100%;
    }
}
