main {
    margin-top: 6px;
    color: #555;
}

.m-b {
    margin-top: 24px;
}

.m-b>div {
    flex: 1;
    flex-shrink: 0;
}

.m-b h1 {
    padding-bottom: 15px;
    font-size: 24px;
    font-weight: normal;
}

main p {
    padding: 0 0 15px 0;
}

main .line {
    margin-bottom: 15px;
    width: 20%;
    padding: 0;
    border: solid 1px #0F4358;
}

.imgs-box {
    display: inline-block;
    text-align: center;
}

.imgs-box img {
    width: 200px;
    height: auto;
    object-fit: cover;
}

.txt-danger {
    color: red;
}

.label {
    font-size: 14px;
    padding-bottom: 7px;
    display: block;
    line-height: 20px;
}

.form-group {
    padding-bottom: 10px;
}

.checks {
    display: flex;
    align-items: center;
}

.checks>label {
    display: flex;
    align-items: center;
    font-size: 14px;
    margin-right: 10px;
    margin-bottom: 0;
    font-weight: normal;
    line-height: 28px;
}

.checks>label span {
    margin-left: 4px;
}

textarea.input {
    height: auto;
}

.input {
    font-size: 14px;
    padding: 6px;
    border: solid 1px #ddd;
    width: 100%;
    height: 34px;
    line-height: 20px;
    display: block;
    border-radius: 3px;
    box-shadow: 0 1px 1px rgba(0, 0, 0, 0.075) inset;
    transition: all 1s cubic-bezier(0.175, 0.885, 0.32, 1) 0s;
}

.input:focus {
    border-color: #0F4358;
}

.btn {
    background: none;
    border: none;
    cursor: pointer;
    margin: 0;
    margin-top: 20px;
    border-radius: 3px;
    padding: 8px 18px;
    display: inline-block;
    font-size: 18px;
    background-color: #0F4358;
    color: #fff;
}
.custom-radio:first-child{
    margin: 10px 0;
}
.custom-radio {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-size: 16px;
    margin: 10px 0 10px 12px
}

.custom-radio input {
    opacity: 0;
    position: absolute;
    width: 0;
    height: 0;
}

.radio-indicator {
    width: 18px;
    height: 18px;
    border: 2px solid #ccc;
    border-radius: 50%;
    margin-right: 8px;
    position: relative;
    transition: all 0.2s ease;
}

.custom-radio:hover .radio-indicator {
    border-color: #0F4358;
}

.custom-radio input:checked+.radio-indicator {
    border-color: #0F4358;
}

.custom-radio input:checked+.radio-indicator::after {
    content: '';
    position: absolute;
    width: 8px;
    height: 8px;
    background: #0F4358;
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

@media screen and (max-width: 1200px) {
    .m-b {
        flex-direction: column;
    }

    .m-b h1 {
        padding-bottom: 12px;
        font-size: 18px;
    }

    main p {
        font-size: 14px;
        padding: 0 0 8px 0;
    }

    .imgs-box {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
}