/*
Theme Name: Test Seite (ARAG Style)
Author: Dein Name
Description: Ein minimalistisches Theme im Stil einer Versicherung mit Login/Registrierung.
Version: 1.0
*/

:root {
    --arag-yellow: #ffcc00;
    --arag-blue: #002d5a;
    --arag-light-grey: #f4f4f4;
    --text-color: #333333;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Arial', sans-serif;
}

body {
    background-color: var(--arag-light-grey);
    color: var(--text-color);
    line-height: 1.6;
}

/* Header im ARAG-Stil */
header {
    background-color: var(--arag-yellow);
    padding: 20px 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 5px solid var(--arag-blue);
}

header h1 {
    color: var(--arag-blue);
    font-size: 28px;
    font-weight: bold;
}

/* Hauptbereich */
.container {
    max-width: 1000px;
    margin: 50px auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    padding: 0 20px;
}

/* Boxen für Login & Registrierung */
.auth-box {
    background: #fff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    border-top: 5px solid var(--arag-blue);
}

.auth-box h2 {
    color: var(--arag-blue);
    margin-bottom: 20px;
    font-size: 22px;
}

/* Formularelemente */
label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
    color: var(--arag-blue);
}

input[type="text"],
input[type="password"],
input[type="email"] {
    width: 100%;
    padding: 12px;
    margin-bottom: 20px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

input[type="submit"],
.btn-primary {
    background-color: var(--arag-blue);
    color: #fff;
    border: none;
    padding: 12px 20px;
    font-size: 16px;
    cursor: pointer;
    border-radius: 4px;
    width: 100%;
    font-weight: bold;
    transition: background 0.3s;
}

input[type="submit"]:hover,
.btn-primary:hover {
    background-color: #001f3f;
}

footer {
    text-align: center;
    padding: 20px;
    background-color: var(--arag-blue);
    color: #fff;
    margin-top: 50px;
}