.form-selector-container {
    margin: 20px;
}

.form-selector-button-group {
    margin-bottom: 20px;
}

.form-selector-btn {
    padding: 10px 20px;
    margin-right: 10px;
    background-color: #007bff;
    color: white;
    border: none;
    cursor: pointer;
}

.form-selector-btn-active {
    background-color: #0056b3;
}

.form-selector-form-container {
    display: none;
}

.form-selector-form-container.form-selector-active {
    display: block;
}

.form-selector-form-group {
    margin-bottom: 15px;
}

.form-selector-form-control {
    width: 100%;
    padding: 10px;
    margin: 5px 0;
    box-sizing: border-box;
}

.form-selector-btn-submit {
    padding: 10px 20px;
    background-color: #007bff;
    color: white;
    border: none;
    cursor: pointer;
}

.form-selector-btn-submit:hover {
    background-color: #0056b3;
}

.form-selector-form-text {
    font-size: 0.8em;
    color: #6c757d;
}

.log-notice {
    display: flex;
    background: #27262B;
    width: 767px;
    border-radius: 25px;
    position: fixed;
    left: 50%;
    z-index: 100;
    box-shadow: 0px 2px 20px 10px rgba(222, 222, 222, 0.25);
    transform: translate(-50%, -50%);
    overflow: auto;
    border: 2px solid #FDDA04;
    overflow: auto;
    max-height: 100vh;
}
.log-notice-content {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
}
.log-image-container {
    flex: 1;
    text-align: left;
    line-height: 0;
    padding: 12px 0 12px 15px;
}
.log-text-container {
    flex: 2;
    text-align: center;
    padding: 3%;
}
.log-title2,
.log-title,
.log-paragraph {
    margin-bottom: 15px;
}
.log-title2,
.log-title {
    color: #FEB700;
}
.log-title2 {
    margin-top: -15%;
    margin-bottom: 28px !important;
}
.log-accept-button {
    width: 48%;
    margin-bottom: 0;
}
.log-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, .7);
    z-index: 10;
    opacity: 0;
    visibility: hidden;
    transition: 250ms all;
}
.log-popup-close-btn {
    background: #eee;
    font-size: 35px;
    color: #222;
    border-radius: 50%;
    width: 25px;
    height: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 16px;
    right: 16px;
    z-index: 3;
    cursor: pointer;
}

.log-popup-content a {
    color: #81A3B7 !important;
    transition: .1s ease all;
    cursor: pointer;
    text-decoration: none;
}
.log-popup-content a:hover {
    color: #f8f8f8 !important;
    text-decoration: underline !important;
}
.log-hidden {
    display: none;
}
.log-switch {
    position: absolute;
    width: 240px;
    display: flex;
    align-items: center;
    justify-content: space-around;
    align-items: center;
    top: 44px;
    left: 474px;
    height: 38px;
    z-index: 1;
}
.log-switch:before {
    content: '';
    position: absolute;
    left: 0;
    z-index: -1;
    width: 100%;
    height: 3rem;
    background: #000;
    border-radius: 10px;
    height: 33px;
    box-shadow: 0px 1px 15px 1px rgba(222, 222, 222, 0.25);
}
.log-switch__button {
    background: none;
    border: none;
    width: 49%;
    padding: 3px;
    color: #fff;
    font-size: 16px;
    z-index: 1;
    cursor: pointer;
}
#log-btn-user.active {
    color: #000;
}
#log-btn-client.active {
    color: #000;
}
#log-btn-user.active~#log-btn-client {
    color: #fff;
}
#log-btn-client.active~#log-btn-user {
    color: #fff;
}
.log-switch__button:hover {
    color: #999;
}
.log-switch__button:focus {
    outline: none;
}
.log-switch__indicator {
    width: 50%;
    height: 74%;
    position: absolute;
    left: 2px;
    background: #FDDA04;
    border-radius: 10px;
    transition: transform 600ms cubic-bezier(.02, .94, .09, .97), background 300ms cubic-bezier(.17, .67, .14, 1.03);
}
#log-btn-user.active~.log-switch__indicator {
    transform: translate3d(0, 0, 0);
    background: #FDDA04;
}
#log-btn-client.active~.log-switch__indicator {
    transform: translate3d(99%, 0, 0);
    background: #FDDA04;
}
.log-form-control {
    width: 70%;
    padding: .375rem .75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #212529;
    appearance: none;
    background-clip: padding-box;
    border: 1px solid #dee2e6;
    border-radius: 0.375rem;
    transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
    text-align-last: auto;
}
.log-space-bottom {
    padding-bottom: 10px;
}
.log-padding {
    padding-top: 12px;
}
.log-main-image {
    max-width: 380px;
    position: static;
    border-radius: 20px;
    display: none;
    mask-image: linear-gradient(to right, black 60%, transparent 90%);
    -webkit-mask-image: linear-gradient(to right, black 60%, transparent 90%);
}
@media (max-width: 767px) {
    .log-notice {
        flex-direction: column;
        width: 400px;
        height: 513px;
    }
    .log-text-container {
        width: 67%;
    }   
    .log-notice-content {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        width: 100%;
    }
    .log-main-image {
        max-width: 386px;
        mask-image: linear-gradient(to bottom, black 60%, transparent 90%);
        -webkit-mask-image: linear-gradient(to bottom, black 60%, transparent 90%);
    }
    .log-switch {
        position: absolute;
        width: 209px;
        top: 208px;
        left: 92px;
        height: 43px;
    }
    .log-image-container {
        padding: 5px 0px 0px 0px;
    }    
    .log-form-control {
        width: 90%;
    }
    
    .log-title2,
    .log-title {
        color: #FEB700;
        margin-bottom: 7px;
    }
    .log-title2 {
        margin-top: 0;
    }
}
@media (max-width: 500px) {
    .log-notice {
        flex-direction: column;
        width: 300px;
        height: 460px;
    }
    .log-text-container {
        width: auto;
    }
    .log-main-image {
        max-width: 282px;
        mask-image: linear-gradient(to bottom, black 60%, transparent 90%);
        -webkit-mask-image: linear-gradient(to bottom, black 60%, transparent 90%);
    }
    .log-switch {
        position: absolute;
        width: 209px;
        top: 155px;
        left: 42px;
        height: 43px;
    }
    .log-image-container {
        padding: 5px 0px 0px 0px;
    }
    .log-text-container {
        padding: 8%;
    }
    .log-form-control {
        width: 100%;
    }
    
    .log-title2,
    .log-title {
        color: #FEB700;
        margin-bottom: 0px;
    }
    .log-title2 {
        margin-top: 0;
    }
}
@media (max-width: 300px) {
    .log-notice {
        flex-direction: column;
        width: 100%;
        height: 460px;
    }
    .log-text-container {
        padding-top: 20%;
    }
    .log-main-image {
        max-width: 270px;
        mask-image: linear-gradient(to bottom, black 60%, transparent 90%);
        -webkit-mask-image: linear-gradient(to bottom, black 60%, transparent 90%);
    }
    .log-switch {
        position: absolute;
        width: 70%;
        top: 147px;
        left: 14%;
        height: 43px;
    }
    .log-image-container {
        padding: 12px 12px 12px 15px;
    }
    .log-text-container {
        padding: 8%;
    }
    .log-form-control {
        width: 100%;
    }
    
    .log-title2,
    .log-title {
        color: #FEB700;
        margin-top: -12%;
    }
    .log-title2 {
        margin-top: 15px;
    }
}