﻿* {
    margin: 0px;
    padding: 0px;
}

*, ::after, ::before {
    box-sizing: border-box
}

body {
    font-family: Arial, sans-serif;
    background: #fafafa;
    font-size: 14px;
}

.form_body_wrap {
    max-width: 800px;
    background: #fff;
    padding: 20px 20px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    margin: 0px auto;
}

.brandLogo_block {
    max-width: 140px;
    display: block;
    margin: 0 auto;
    margin-bottom: 20px;
}

    .brandLogo_block img {
        display: inline-block;
        max-width: 100%;
    }

fieldset {
    border: 1px solid #ddd;
    margin-bottom: 20px;
    border-radius: 8px;
    padding: 15px;
}

legend {
    font-weight: bold;
    color: #333;
}

label {
    display: block;
    font-weight: 500;
    font-size: 15px;
    margin-bottom: 5px;
}

input[type="text"], select, textarea {
    font-family: "Libre Baskerville", 'Poppins', 'Puppies Play', 'Niconne', cursive;
    width: 100%;
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 4px;
    min-height: 34px;
}

textarea {
    resize: vertical;
    min-height: 40px;
}

.radio-group {
    margin-top: 10px;
}

    .radio-group label {
        display: inline-block;
        margin-right: 15px;
        font-weight: normal;
    }

button {
    background-color: #007bff;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 16px;
}

    button:hover {
        background-color: #0056b3;
    }

.form_row {
    font-family: "Libre Baskerville", 'Poppins', 'Puppies Play', 'Niconne', cursive;
}

    .form_row label {
        font-family: "Libre Baskerville", 'Poppins', 'Puppies Play', 'Niconne', cursive;
    }

    .form_row input, .form_row select {
        font-family: "Libre Baskerville", 'Poppins', 'Puppies Play', 'Niconne', cursive;
    }

.body_container .form_blocks {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}

.form_blocks .formLeft_col, .form_blocks .formRight_col {
    width: 100%;
}

.profile_formFields {
    display: grid;
    gap: 10px;
    grid-template-columns: repeat(2, 1fr);
}

    .profile_formFields .form_row {
        margin-bottom: 5px;
    }

.profileInfo_block {
    font-family: "Libre Baskerville", 'Poppins', 'Puppies Play', 'Niconne', cursive;
    background: #fff;
    padding: 20px 30px;
    border-radius: 10px;
    margin-bottom: 10px;
}

    .profileInfo_block h4 {
        font-family: "Libre Baskerville", 'Poppins', 'Puppies Play', 'Niconne', cursive;
        display: block;
        text-align: left;
        margin-bottom: 10px;
        font-size: 16px;
    }

    .profileInfo_block.personal_information {
        background: #c4aa9142;
    }

    .profileInfo_block.workingTime_info {
        background: #c4aa9142;
    }

    .profileInfo_block.services_info {
        background: #c4aa9142;
    }

    .profileInfo_block.rates_info {
        background: #c4aa9142;
    }

        .profileInfo_block.workingTime_info .profile_formFields, .profileInfo_block.services_info .profile_formFields, .profileInfo_block.rates_info .profile_formFields {
            display: block;
        }

.form_blocks.profile_block_margin .formLeft_col {
    margin-right: 5px;
    display: block;
}

.form_blocks.profile_block_margin .formRight_col {
    margin-left: 5px;
    display: block;
}

.form_submitBtn {
    font-family: "Libre Baskerville", 'Poppins', 'Puppies Play', 'Niconne', cursive;
    display: block;
    width: 100%;
    font-weight: 600;
    font-size: 18px;
    padding: 12px 30px;
    background: #c4aa91;
}

    .form_submitBtn:hover, .form_submitBtn:focus {
        background: #c4aa91b3;
    }

.form_row.radioRow {
    padding: 2px 0px;
}

@media (max-width: 1000px) {
    .form_body_wrap {
        padding: 10px 14px;
    }

    .profileInfo_block {
        font-family: "Libre Baskerville", 'Poppins', 'Puppies Play', 'Niconne', cursive;
        margin-bottom: 14px;
    }

    .form_blocks.profile_block_margin .formLeft_col {
        margin-right: 7px;
    }

    .form_blocks.profile_block_margin .formRight_col {
        margin-left: 7px;
    }

    .profileInfo_block {
        font-family: "Libre Baskerville", 'Poppins', 'Puppies Play', 'Niconne', cursive;
        padding: 15px 16px;
    }
}
