/* Gesamte Seite */
html,
body {
    margin: 0 !important;
    padding: 0 !important;
    width: 100%;
    min-height: 200vh;
    background: #D5DEF0 !important;
    overflow-x: hidden;
}

/* Hauptcontainer */
#main {
    width: 100% !important;
    max-width: 100% !important;
    min-height: 100vh;
    padding: 40px !important;
    background: #D5DEF0 !important;
}

/* Formularbereich */
.formular {
    width: 100%;
}

/* Inputs */
#form1 .text-input,
#form1 textarea {
    width: 100%;
    border-radius: 10px;
    border: 1px solid #b8c4dc !important;
    background: #fff;
    padding: 14px !important;
    font-size: 14px;
}

/* Textarea */
#form1 textarea {
    min-height: 180px;
}

/* Submit Button */
.submit {
    width: 100% !important;
    background: #7E8FB6 !important;
    color: #fff !important;
    border: none !important;
    border-radius: 10px;
    padding: 16px !important;
    text-align: center !important;
    font-size: 15px;
    transition: 0.3s ease;
}

.submit:hover {
    background: #65779f !important;
}

/* Sicherheitsbox */
.secure {
    width: 100%;
    background: #8FA2C7 !important;
    border-radius: 12px;
    padding: 20px;
    margin-top: 30px;
}

/* Honeypot Box */
#dsasec-container {
    width: 100%;
    max-width: 420px;
    background: rgba(255,255,255,0.6);
    border-radius: 12px;
    border: 1px solid #b8c4dc;
}

/* Checkbox Bereich */
.checkbox {
    margin-top: 25px;
    margin-bottom: 25px;
}

/* Links */
a {
    color: #4c628f !important;
}