.actionimg {
    cursor: pointer;
}


.color {
    margin-bottom: 10px
}

label.radio {
    cursor: pointer
}

    label.radio input {
        position: absolute;
        top: 0;
        left: 0;
        visibility: hidden;
        pointer-events: none
    }

    label.radio span {
        padding: 2px 9px;
        border: 2px solid #808080;
        display: inline-block;
        color: #000;
        border-radius: 20px;
        text-transform: uppercase
    }

    label.radio input:checked + span {
        border-color: #808080;
        background-color: #808080;
        color: #fff
    }

.login-back {
    background-image: url(../img/login-back2.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: right;
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.login-from-box {
    background: #fccb52;
    border-radius: 25px;
    padding: 25px;
    border: 1px solid #dda721;
    text-align: center;
    box-shadow: 0 8px 24px hsl(42.71deg 71.23% 23.35% / 39%);
}

    .login-from-box h2 {
        color: #7c3e0d;
        font-size: 45px;
        font-weight: 700;
    }

    .login-from-box h5 {
        color: black;
        font-size: 25px;
        font-weight: 600;
        margin: 0;
    }

    .login-from-box .form-group {
        margin-top: 20px;
    }

        .login-from-box .form-group input {
            background: #c49522;
            height: 45px;
            color: white;
            font-size: 16px;
            border: none;
        }

            .login-from-box .form-group input:-webkit-autofill {
                background: #c49522 !important;
                color: white !important;
            }

            .login-from-box .form-group input:-internal-autofill-selected {
                background: #c49522 !important;
                color: white !important;
            }

            .login-from-box .form-group input:focus {
                box-shadow: none;
            }

        .login-from-box .form-group select:focus {
            box-shadow: none;
        }

        .login-from-box .form-group select {
            background: #c49522;
            height: 45px;
            color: white;
            font-size: 16px;
            border: none;
        }

            .login-from-box .form-group select option {
                color: white;
            }

        .login-from-box .form-group input::placeholder {
            color: white;
            font-size: 16px;
        }

.btn-login {
    height: 45px;
    background: #c49522 !important;
    border: none !important;
    color: white !important;
    font-size: 16px !important;
    font-weight: bold !important;
    transition: all 0.4s cubic-bezier();
}

    .btn-login:hover {
        background-color: #7c3e0d !important;
        transition: all 0.4s cubic-bezier();
    }
@media (max-width: 575px) {
    .login-from-box h2 {
        font-size: 30px;
    }
    .login-from-box h5 {
        font-size: 20px;
    }
}