.main-log-in .right-log-in .main-form-container form div input {
    max-width: unset;
}
.w-100 {
    width: 100%;
}
.input-group {
    position: relative;
}
.form-input {
    margin-bottom: 10px;
}
.register.invalid-feedback {
    font-size: 13px;
    position: absolute;
    bottom: -10px;
}
.agree-block {
    margin-top: 42.5px;
    font-size: 16px;
}
.agree-label {
    color: white;
}
/* custom checkbox */
.custom-checkbox {
    padding: 10px !important;
    border-radius: 5px !important;
    margin-top: -5px !important;
}
.agree-block input[type="checkbox"] {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    width: 20px;
    height: 20px;
    border: 1px solid #CE0D0D;
    background-color: #CE0D0D;
    border-radius: 3px;
    outline: none;
    cursor: pointer;
    position: relative;
    top: 4px;
    margin-right: 10px;
}

.agree-block input[type="checkbox"]:checked {
    background-color: #CE0D0D;
}

.agree-block input[type="checkbox"]::before {
    content: '\2713';
    position: absolute;
    top: 5px;
    left: 10px;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 20px;
    opacity: 0;
    font-size: 25px;
}

.agree-block input[type="checkbox"]:checked::before {
    opacity: 1;
}
