﻿.bg-white {
    background: #fff;
}

.f-arimo {
    font-family: 'Arimo';
}

.text-center {
    text-align: center;
}

.form .form-control {
    height: auto;
    padding: 10px 11px 11px;
    border: 1px solid #e1e2e3;
    border-radius: 8px;
    color: #171717;
    font-size: 14px;
}

.w-100 {
    max-width: 500px;
}

.register-inner {
    background: #F0F4ED;
    padding: 30px 0 50px;
}

.register-cnt {
    border-top: 3px solid #11763F;
    border-bottom: 3px solid #11763F;
    padding: 20px 30px 40px;
}
.register-cnt h2 {
    margin-bottom: 10px;
}
ol li {
    list-style: decimal;
}

.register-form {
    margin-top: 30px;
    padding: 30px;
    border: 1px solid #11763F;
    border-radius: 10px;
}

.form-note {
    color: rgb(217,48,37);
    font-size: 14px;
}

.register-form > div {
    margin-bottom: 20px;
}

.required {
    color: rgb(217,48,37);
}

.form-other > div {
    margin-bottom: 10px;
}
    .form-other label {
        width: 150px;
    }
    .form-input input {
        position: absolute;
        z-index: -1;
        opacity: 0;
        width: 0;
    }
    .form-input input[type="text"] {
        position: relative;
        z-index: 1;
        opacity: 1;
        display: block;
        top: -10px;
        width: 100%;
    }
    .form-label {
        position: relative;
        padding-left: 20px;
        margin-right: 30px;
    }

    .form-label.radio-lbl:before {
        content: '';
        position: absolute;
        width: 16px;
        height: 16px;
        border: 1px solid #11763F;
        top: 4px;
        left: 0;
        border-radius: 50%;
    }
    .form-label.radio-lbl:after {
        content: '';
        opacity: 0;
        position: absolute;
        width: 12px;
        height: 12px;
        background: #11763F;
        top: 6px;
        left: 2px;
        border-radius: 50%;
    }
.form-input input[type="radio"]:checked ~ .form-label.radio-lbl:after {
    opacity: 1;
}

.form-footer {
    margin-top: 20px;
}

.inputfile {
    width: 0.1px;
    height: 0.1px;
    opacity: 0;
    overflow: hidden;
    position: absolute;
    z-index: -1;
}

    .inputfile + label {
        color: #11763F;
        border: 2px solid #11763F;
        max-width: 80%;
        font-size: 1.25rem;
        font-weight: 700;
        text-overflow: ellipsis;
        white-space: nowrap;
        cursor: pointer;
        display: inline-block;
        overflow: hidden;
        padding: 0.625rem 1.25rem;
        font-size: 16px;
        margin-top: 20px;
    }

.inputfile + label svg {
    width: 1em;
    height: 1em;
    vertical-align: middle;
    fill: currentColor;
    margin-top: -0.25em;
    margin-right: 0.25em;
}

.register-form .btn-submit {
    display: inline-block;
    padding: 10px 24px;
    border-radius: 6px;
    background-color: #0F723A;
    box-shadow: 0px 4px 13.3px 0px rgba(49, 134, 49, 0.2);
    color: #fff;
    text-decoration: none;
    border: none;
}
.recipe-info .form-text {
    margin-bottom: 20px;
}
.recipe-info h3 {
    font-weight: bold;
    margin: 40px 0 20px;
    text-align: center;
}

.recipe-info label.recipe-issue {
    position: relative;
}

    .recipe-info label.recipe-issue:before {
        content: '';
        position: absolute;
        width: 16px;
        height: 16px;
        border: 1px solid #11763F;
        top: 4px;
        left: 0;
        border-radius: 2px;
    }
    .recipe-info label.recipe-issue:after {
        content: '✓';
        display: none;
        position: absolute;
        width: 14px;
        height: 14px;
        top: 0;
        left: 2px;
        border-radius: 0;
    }
.recipe-info input[type="checkbox"] {
    opacity: 0;
    visibility: hidden; 
}
.recipe-info input[type="checkbox"]:checked ~ label.recipe-issue:after {
    display: block;
}
.d-none {
    display: none;
}