/* Общие стили */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #87CEFA;
    margin: 0;
    padding: 0;
}

/* Заголовок */
header h1, h2 {
    text-align: center;
    padding: 20px 0;
    color: #003366;
    margin-top: 0;
    font-size: 28px;
}

/* Центрирование контейнера */
.container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Кнопки в табах (сверху: Logi sisse / Registreeru) */
.tabs {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.tabs button {
    font-size: 16px;
    padding: 12px 30px;
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.tabs button:hover {
    background-color: #0056b3;
    transform: scale(1.05);
}

/* Кнопки отправки формы: Logi sisse, Registreeru */
form input[type="submit"] {
    display: block;
    width: 60%;
    max-width: 200px;
    margin: 30px auto 0 auto; /* отступ сверху и по центру */
    padding: 12px;
    font-size: 16px;
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

form input[type="submit"]:hover {
    background-color: #0056b3;
    transform: scale(1.05);
}

/* Контейнер формы */
form, .form-section {
    background: white;
    max-width: 500px;
    width: 100%;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(0,0,0,0.1);
    text-align: left;
    margin-bottom: 40px;
}

/* Поля ввода */
input[type="text"],
input[type="password"] {
    width: 100%;
    padding: 12px;
    margin-top: 6px;
    margin-bottom: 20px;
    border-radius: 6px;
    border: 1px solid #ccc;
    box-sizing: border-box;
}

/* Метки */
label {
    font-weight: bold;
    display: block;
    margin: 15px 0 5px;
}

/* Сообщения */
.message {
    text-align: center;
    color: red;
    font-weight: bold;
    margin-top: 10px;
}

/* Секции форм */
.form-section {
    display: none;
}
.form-section.active {
    display: block;
}
