/* Vollflächiger Hintergrund */
html, body {
    height: 100%;
    margin: 0;
    padding: 0;
    background: linear-gradient(to bottom right, #fffaf5, #f2faff);
    font-family: 'Inter', 'Helvetica Neue', sans-serif;
    font-size: 16px;
    color: #333;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Inhalt zentrieren */
.main-wrapper {
    flex: 1;
    display: flex;
    padding: 2rem;
}

.header .logo::after {
	content: "Satin Jackets Newsroom";
	display: block;
	text-align: center;
	font-size: 1.5rem;
	font-weight: 600;
	color: #222;
	margin-top: 1rem;
	font-family: 'Inter', sans-serif;
}

/* Formular-Box */
.container, .main-content {
    max-width: 600px;
    width: 100%;
    padding: 2rem 2.5rem;
    background-color: rgba(255, 255, 255, 0.95);
    border-radius: 1.2rem;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

/* Logo mittig */
.header .logo {
	margin-bottom: 2rem;
}

.header .logo img {
	display: block;
	margin: 0 auto;
	max-width: 200px;
	height: auto;
	filter: drop-shadow(0 2px 4px rgba(0,0,0,0.15));
}

/* Überschriften */
h1, h2, h3 {
    color: #222;
    font-weight: 600;
    margin-bottom: 1rem;
}

/* Formularfelder */
input[type="text"],
input[type="email"],
select,
textarea {
    width: 100%;
    padding: 0.75rem;
    margin-bottom: 1.2rem;
    border: 1px solid #ccc;
    border-radius: 0.5rem;
    background-color: #fff;
    font-size: 1rem;
    color: #333;
}

input::placeholder {
    color: #aaa;
}

/* Buttons */
button,
input[type="submit"] {
    background: linear-gradient(to right, #ffb347, #ffcc33);
    color: #222;
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    font-weight: 600;
    border: none;
    border-radius: 0.6rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: block;
    margin: 1rem auto 0;
}

button:hover,
input[type="submit"]:hover {
    background: linear-gradient(to right, #ffd580, #ffe680);
}

/* Footer */
footer {
    display: none;
}