body {
    font-family: 'Poppins', sans-serif;
    margin: 20px;
}

.container {
    max-width: 700px;
    color: #5f5f5f;
    margin: 0 auto;
}

.logo-container {
    text-align: center;
}

.logo {
    width: 200px;
}

.page-title {
    font-size: 22px;
    font-weight: 500;
    text-align: center;
    color: #3182ce;
    border-bottom: 2px solid #3182ce;
    margin-top: 5px;
    padding-bottom: 10px;
}

form {
    background-color: #fff;
    padding: 10px 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

fieldset {
    border: 1px solid #3182ce;
    border-radius: 5px;
    margin: 15px 0;
    padding: 0 15px 10px;
}

legend {
    font-size: 14px;
    color: #3182ce;
    padding: 5px;
    border-radius: 3px;
    font-weight: 500;
}

.form-group {
    display: flex;
    align-items: center;
    margin: 10px 0;
}
.start-item {
    align-self: flex-start;
    margin-top: 2px;
   line-height: 1.2;
}

label {
    width: 320px;
    font-size: 12px;
    font-weight: 500;
    color: #494949;
}

select,
input[type="text"],
input[type="number"],
textarea {
    font-size: 11px;
    width: 100%;
    padding: 6px 8px;
    border: 1px solid #C6C6C6;
    border-radius: 4px;
    background-color: #f9f9f9;
    font-family: 'Poppins', sans-serif;
}

textarea {
    height: 100px;
    resize: vertical;
}

.result {
    font-size: 12px;
    width: 100%;
    font-weight: 600;
    margin: 0;
}

select:focus,
input:focus,
textarea:focus {
    outline: none;
}

button {
    background-color: #3182ce;
    color: white;
    padding: 8px 12px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    display: block;
    margin: 20px auto;
}

button:hover {
    background-color: #2b6cb0;
}

@media (max-width: 600px) {
    .form-group {
        flex-direction: column;
        align-items: flex-start;
    }

    label {
        width: 100%;
        margin-bottom: 5px;
    }

    select,
    input[type="text"],
    input[type="number"],
    textarea {
        width: 100%;
    }
}