﻿body, html {
    margin: 0;
    padding: 0;
    height: 100%;
    overflow-x: hidden;
    overflow-y: auto;
    background: slategray;
    font-family: 'Inter', sans-serif;
    color: white;
}

.page-wrapper {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.main-content {
    flex: 1;
}

input {
    font-family: 'Inter', sans-serif;
}

input::placeholder,
textarea::placeholder {
    color: #94a3b8;
}

@media (max-width: 768px) {
    input[type="text"],
    input[type="email"],
    input[type="number"],
    input[type="password"],
    input[type="search"],
    input[type="tel"],
    textarea {
        font-size: 16px !important;
    }
}

p {
    color: #374151;
}

.language-switcher {
    margin: 20px;
    text-align: center;
    font-size: 1rem;
}

.language-switcher .lang-link {
    margin: 0 10px;
    color: white;
    text-decoration: none;
    font-weight: 500;
}

.language-switcher .lang-link:hover {
    text-decoration: underline;
}

footer {
    text-align: center;
    padding: 20px;
    font-size: 0.9rem;
}

.home-button {
    text-align: center;
    font-size: 1rem;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.home-button .home-link {
    margin: 0 10px;
    color: #4a5568;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.2rem;
}

.home-button .home-link:hover {
    text-decoration: underline;
}

button {
    font-family: 'Inter', sans-serif;
    font-size: 0.875rem;
}

a {
    font-family: 'Inter', sans-serif;
    font-size: 0.875rem;
}

h1 {
    font-size: 1.5rem;
    color: #4a5568;
    margin-bottom: 20px;
    font-family: 'Montserrat', sans-serif;
}

h2 {
    font-size: 1.5rem;
    color: #4a5568;
    font-family: 'Montserrat', sans-serif;
    margin: 0 0 20px 0;
}

h3 {
    font-size: 1.1rem;
    color: #4a5568;
    margin-bottom: 20px;
    font-family: 'Montserrat', sans-serif;
}

.lang-link.active {
    font-weight: 800;
    color: #1a1a1a;
    text-decoration: none;
}

.content-wrapper {
    padding: 20px 20px;
    width: 100%;
    box-sizing: border-box;
}

.form-input.input-validation-error {
    border-color: #dc2626;
}

.field-validation-error {
    color: #dc2626;
    font-size: 0.875rem;
    margin-top: 0.25rem;
    display: block;
}

.validation-summary-errors {
    color: #dc2626;
    background-color: #fef2f2;
    border: 1px solid #fee2e2;
    border-radius: 8px;
    padding: 1rem;
    margin-bottom: 1.5rem;
}

.validation-summary-errors ul {
    margin: 0;
    padding-left: 1.5rem;
}