/* Allgemeines Styling */
body {
    font-family: Arial, sans-serif;
    background-color: #f0f4f8;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 20px;
}

/* Container für das Formular */
.container {
    background: white;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    width: 100%;
    max-width: 600px;
    box-sizing: border-box;
}

/* Überschriften */
h1 {
    text-align: center;
    color: #333;
}

p {
    text-align: center;
    color: #555;
}

/* Labels */
label {
    font-weight: bold;
    display: block;
    margin-top: 15px;
    font-size: 16px;
    color: #444;
}

/* Einheitliche Eingabefelder */
input[type="text"], 
input[type="email"], 
input[type="tel"], 
input[type="date"], 
textarea {
    width: 100%;
    padding: 14px;
    margin-top: 5px;
    border: 2px solid #ccc;
    border-radius: 8px;
    font-size: 16px;
    background: #e9e9e9;
    box-sizing: border-box;
}

/* Textarea größer */
textarea {
    height: 120px;
    resize: vertical;
}

/* Buttons */
.button {
    display: block;
    width: 100%;
    padding: 14px;
    margin-top: 20px;
    background-color: #007bff;
    color: white;
    border: none;
    cursor: pointer;
    border-radius: 8px;
    font-size: 18px;
    font-weight: bold;
    text-align: center;
    transition: background-color 0.3s ease;
}

.button:hover {
    background-color: #0056b3;
}

/* Homepage Button */
.homepage-btn {
    background-color: #28a745;
    margin-top: 10px;
}

.homepage-btn:hover {
    background-color: #1e7e34;
}

/* Link-Styling */
a {
    text-decoration: none;
    color: white;
}

/* Schrift für Sektionen */
h3 {
    margin-bottom: 10px;
    color: #333;
}

/* Anpassung für mobile Ansicht */
@media (max-width: 600px) {
    .container {
        width: 90%;
    }

    .token-selection {
        flex-direction: column;
    }
}

/* Token-Auswahl Styling */
.token-selection {
    display: flex;
    gap: 20px;
    margin: 20px 0;
    justify-content: space-between;
    flex-wrap: wrap;
}

.token-box {
    flex: 1 1 30%;
    border: 2px solid transparent;
    border-radius: 10px;
    text-align: center;
    cursor: pointer;
    transition: border-color 0.3s ease, transform 0.2s ease;
    padding: 10px;
    background-color: #f8f9fa;
}

.token-box:hover {
    transform: scale(1.03);
    border-color: #ccc;
}

.token-box.selected {
    border-color: #007bff;
    background-color: #e0f0ff;
}

.token-box img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 10px;
    object-fit: cover;
    max-height: 150px;
/*  transform: scale(0.8);  */
}

.checkbox-text {
    color: blue;
}