* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Inter', sans-serif;
}

body {
    min-height: 100vh;
    background: linear-gradient(135deg, #2563eb, #1e40af);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.page {
    width: 100%;
    max-width: 500px;
}

.form-card {
    background: #fff;
    padding: 32px;
    border-radius: 18px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

h1 {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 8px;
    color: #111827;
}

.subtitle {
    font-size: 14px;
    color: #6b7280;
    margin-bottom: 24px;
}

.field {
    display: flex;
    flex-direction: column;
    margin-bottom: 18px;
}

label {
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 6px;
    color: #374151;
}

input, textarea {
    padding: 12px 14px;
    border-radius: 10px;
    border: 1px solid #d1d5db;
    font-size: 14px;
    transition: 0.2s;
}

textarea {
    min-height: 120px;
    resize: vertical;
}

input:focus,
textarea:focus {
    outline: none;
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.2);
}

button {
    width: 100%;
    padding: 14px;
    background: #2563eb;
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: 0.2s;
}

button:hover {
    background: #1e40af;
}

@media (max-width: 480px) {
    .form-card {
        padding: 24px;
    }

    h1 {
        font-size: 22px;
    }
}

button[type="submit"]{
    transition: transform 0.3s;
}

button[type="submit"]:hover{
    transform: scale(1.05);
}


.list {
    margin-top: 24px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    list-style: none;
}

.item {
    width: 44px;
    height: 44px;
}

.item img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    transition: transform 0.25s ease, opacity 0.25s ease;
}

.item a:hover img {
    transform: scale(1.1);
    opacity: 0.85;
}

@media (max-width: 480px) {
    .list {
        gap: 12px;
    }

    .item {
        width: 36px;
        height: 36px;
    }
}
