  /* Eleganter Registrierungs-Container */  body { 
        font-family: Arial, sans-serif; 
        background:#f5f5f5; 
        padding:40px; 
    }

    .box { 
        max-width:400px; 
        margin:auto; 
        background:white; 
        padding:20px; 
        border-radius:8px; 
        box-shadow:0 0 10px rgba(0,0,0,0.1); 
    }

    h2 {
        text-align:center;
        margin-bottom:15px;
    }

    input[type=email], 
    input[type=password] {
        width:100%; 
        padding:10px; 
        margin:8px 0; 
        border:1px solid #ccc; 
        border-radius:4px;
    }

    button {
        width:100%; 
        padding:10px; 
        background:#2c7be5; 
        color:white; 
        border:none; 
        border-radius:4px;
        cursor:pointer; 
        font-size:16px;
    }

    button:hover { 
        background:#1a5bb8; 
    }

	.error {
		background: #ffe5e5;
		border-left: 5px solid #ff4d4d;
		padding: 12px;
		margin-bottom: 15px;
		color: #b30000;
		font-weight: bold;
		text-align: center;
		border-radius: 4px;
	}

	.success {
		background: #e5ffe5;
		border-left: 5px solid #33cc33;
		padding: 12px;
		margin-bottom: 15px;
		color: #006600;
		font-weight: bold;
		text-align: center;
		border-radius: 4px;
	}

    .link { 
        margin-top:15px; 
        text-align:center; 
    }
