@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap');

body {
    background: linear-gradient(135deg, #f5f8fb 0%, #e0e7ef 100%);
    font-family: 'Roboto', Arial, sans-serif;
    margin: 0;
    padding: 0;
    min-height: 100vh;
}

form {
    background: #fff;
    max-width: 400px;
    margin: 40px auto 20px auto;
    padding: 32px 28px 24px 28px;
    border-radius: 18px;
    box-shadow: 0 6px 24px rgba(0,0,0,0.09), 0 1.5px 3px rgba(0,0,0,0.04);
    display: flex;
    flex-direction: column;
    gap: 18px;
}

label {
    font-size: 1.1rem;
    color: #004552;
    margin-bottom: 4px;
    font-weight: 700;
}

input[type="text"],
textarea {
    font-family: inherit;
    font-size: 1rem;
    padding: 10px 12px;
    border: 1.5px solid #b7c3d0;
    border-radius: 6px;
    background: #f7fafc;
    transition: border-color 0.2s;
    resize: vertical;
}

input[type="text"]:focus,
textarea:focus {
    border-color: #2596be;
    outline: none;
    background: #fff;
}

button[type="submit"],
button[type="reset"] {
    font-family: inherit;
    font-size: 1rem;
    font-weight: 600;
    padding: 10px 0;
    margin-top: 6px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    background: linear-gradient(90deg, #2596be 60%, #20a246 100%);
    color: #fff;
    transition: background 0.2s, transform 0.1s;
    box-shadow: 0 2px 6px rgba(37,150,190,0.08);
}

button[type="reset"] {
    background: linear-gradient(90deg, #fe4164 60%, #ffb11f 100%);
    margin-left: 0;
}

button:hover {
    transform: translateY(-2px) scale(1.04);
    filter: brightness(1.07);
}

img {
    display: block;
    max-width: 320px;
    width: 90vw;
    margin: 16px auto 0 auto;
    border-radius: 14px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.09);
}

@media (max-width: 500px) {
    form {
        max-width: 95vw;
        padding: 18px 8vw 14px 8vw;
    }
    img {
        max-width: 98vw;
    }
}
