<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* ÐžÐ±Ñ‰Ð¸Ðµ ÑÑ‚Ð¸Ð»Ð¸ */
body {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(135deg, #f0f0f0, #d9e7ff);
    margin: 0;
    padding: 20px;
    text-align: center;
}

/* Ð—Ð°Ð³Ð¾Ð»Ð¾Ð²ÐºÐ¸ */
h1, h2 {
    color: #333;
    font-weight: 600;
    margin-bottom: 20px;
}

/* ÐšÐ¾Ð½Ñ‚ÐµÐ¹Ð½ÐµÑ€ Ñ„Ð¾Ñ€Ð¼Ñ‹ */
.form-container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

/* Ð¤Ð¾Ñ€Ð¼Ð° */
.form-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh; /* Ð­Ñ‚Ð¾ Ð³Ð°Ñ€Ð°Ð½Ñ‚Ð¸Ñ€ÑƒÐµÑ‚, Ñ‡Ñ‚Ð¾ Ñ„Ð¾Ñ€Ð¼Ð° Ð±ÑƒÐ´ÐµÑ‚ Ð¿Ð¾ Ñ†ÐµÐ½Ñ‚Ñ€Ñƒ Ð²ÑÐµÐ¹ Ð²Ñ‹ÑÐ¾Ñ‚Ñ‹ ÑÐºÑ€Ð°Ð½Ð° */
    flex-direction: column;
}
form {
    background: white;
    padding: 30px;
    width: 100%;
    max-width: 350px; /* Ð¤Ð¸ÐºÑÐ¸Ñ€Ð¾Ð²Ð°Ð½Ð½Ð°Ñ ÑˆÐ¸Ñ€Ð¸Ð½Ð° Ñ„Ð¾Ñ€Ð¼Ñ‹ */
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}

form:hover {
    transform: scale(1.02);
}

label {
    width: 100%;
    text-align: left;
    margin: 10px 0 5px;
    font-weight: 500;
    color: #555;
}

/* ÐŸÐ¾Ð»Ñ Ð²Ð²Ð¾Ð´Ð° */
input {
    width: 100%;
    max-width: 320px;
    padding: 12px;
    border: 2px solid #ccc;
    border-radius: 6px;
    transition: 0.3s;
    font-size: 16px;
    text-align: left;
    background-color: #f9f9f9;
}

input:focus {
    border-color: #007bff;
    outline: none;
    background-color: white;
}

/* ÐšÐ½Ð¾Ð¿ÐºÐ° */
button {
    background: linear-gradient(135deg, #007bff, #0056b3);
    color: white;
    border: none;
    padding: 12px;
    font-size: 16px;
    cursor: pointer;
    border-radius: 6px;
    font-weight: bold;
    transition: 0.3s;
    width: 100%;
    max-width: 320px;
    margin-top: 15px;
}

button:hover {
    background: linear-gradient(135deg, #0056b3, #004494);
    transform: scale(1.05);
}

/* Ð¢Ð°Ð±Ð»Ð¸Ñ†Ð° */
table {
    width: 80%;
    margin: 0 auto;
    border-collapse: collapse;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

th, td {
    border: 1px solid #ddd;
    padding: 14px;
    text-align: center;
    font-size: 16px;
}

th {
    background: #007bff;
    color: white;
    font-weight: bold;
}

tr:nth-child(even) {
    background: #f9f9f9;
}

/* ÐÐ½Ð¸Ð¼Ð°Ñ†Ð¸Ñ Ð¿Ð¾ÑÐ²Ð»ÐµÐ½Ð¸Ñ */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

form, table {
    animation: fadeIn 0.8s ease-in-out;
}



</pre></body></html>