﻿a {
    cursor: pointer;
    text-decoration: none;
}

    a:not(.btn):hover {
        text-decoration: underline;
    }

.btn {
    color: white!important;
    text-transform: uppercase;
    border-radius: 2px;
    box-shadow: 0 2px 5px 0 rgb(0 0 0 / 16%), 0 2px 10px 0 rgb(0 0 0 / 12%);
    font-size: .75rem;
    padding: 0.85rem 2.13rem;
    line-height: 1.25;
    font-weight: 400;
    word-break: break-word;
}

    .btn:hover {
        box-shadow: 0 5px 11px 0 rgb(0 0 0 / 18%), 0 4px 15px 0 rgb(0 0 0 / 15%);
    }

    .btn:focus {
        box-shadow: 0 2px 5px 0 rgb(0 0 0 / 16%), 0 2px 10px 0 rgb(0 0 0 / 12%);
    }

    .btn .spinner {
        display: none;
    }

.btn.loading > span:first-child {
    display: none;
}

.btn.loading .spinner {
    display: flex;
    align-items: center;
}

.text-button {
    background: none;
    border: none;
    padding: 0;
}

.spinner-border {
    width: 1rem;
    height: 1rem;
    margin-left: 5px;
}

.form-input {
    font-weight: 400;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-shadow: inset 0 1px 1px rgb(0 0 0 / 8%);
    transition: border-color ease-in-out .15s,box-shadow ease-in-out .15s;
    padding: 5px 10px;
    width: 100%;
    box-sizing: border-box;
}

    .form-input:focus {
        outline: 0;
    }

label {
    font-weight: 500;
    font-size: .9rem;
}

.input-with-fontawesome {
    position: relative;
}

.input-with-fontawesome .form-input {
    padding-right: 40px;
    padding-right: 45px;
}

.input-with-fontawesome i {
    position: absolute;
    right: 15px;
    top: 9px;
    display: none;
}

.form-password {
    display: flex;
    align-items: center;
    position: relative;
}

    .form-password .form-input {
        padding-right: 75px;
    }

    .form-password i {
        position: absolute;
        right: 50px;
        display: none;
    }

    .form-password .eye, .form-password .eye-slash {
        border: 1px solid #ccc;
        color: #212529;
        box-shadow: inset 0 1px 1px rgb(0 0 0 / 8%);
        padding: 5px 10px;
        box-sizing: border-box;
        border-left: 0;
        background-color: lightgrey;
        border-top-right-radius: 4px;
        border-bottom-right-radius: 4px;
        position: absolute;
        right: 0;
        width: 41px;
        height: 36px;
    }

    .input-with-fontawesome i {
        display: none;
    }

.form-password {
    display: flex;
    align-items: center;
    position: relative;
}

    .form-password .form-input {
        padding-right: 75px;
    }

    .form-password i {
        position: absolute;
        right: 50px;
        display: none;
    }

    .form-password .eye, .form-password .eye-slash {
        border: 1px solid #ccc;
        color: #212529;
        box-shadow: inset 0 1px 1px rgb(0 0 0 / 8%);
        padding: 5px 10px;
        box-sizing: border-box;
        border-left: 0;
        background-color: lightgrey;
        border-top-right-radius: 4px;
        border-bottom-right-radius: 4px;
        position: absolute;
        right: 0;
        width: 41px;
        height: 36px;
    }

        .form-password .eye::before {
            font-family: 'Font Awesome 6 Free';
            content: '\f06e';
            font-weight: 900;
        }

        .form-password .eye-slash::before {
            font-family: 'Font Awesome 6 Free';
            content: '\f070';
            font-weight: 900;
        }

        .form-password .eye:hover:before, .form-password .eye-slash:hover:before {
            opacity: 0.8;
        }

.fa-circle-check {
    color: green;
}

.fa-circle-xmark {
    color: red;
}

.fa-xmark {
    color: red;
    font-size: 1.2rem;
}

.fa-check {
    color: limegreen;
    font-size: 1rem;
}

.fa-circle-info:hover {
    cursor: help;
    opacity: .8;
}

.radio-label {
    font-weight: 500;
    margin-right: 5px;
    white-space: break-spaces;
}

.form-check-input, .form-check-label {
    cursor: pointer;
}

@media screen and (max-width: 768px) {
    .btn {
        width: 100%;
    }
}