/* BUTTONS */
/*Adicionar o css aqui*/
.text-red {
    color: #dc3545!important;
}
.ml-2, .mh-2 {
    margin-left: 0.5rem!important;
}
.mr-2, .mh-2 {
    margin-right: 0.5rem!important;
}
.mb-2, .my-2 {
    margin-bottom: 0.5rem!important;
}
.mt-2, .my-2 {
    margin-top: 0.5rem!important;
}
body {
    text-align: center;
    padding-top: 2rem;
}

.logo {
    padding: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.login-with-microsoft-btn {
    transition: background-color .3s, box-shadow .3s;

    padding: 12px 16px 12px 42px;
    border: none;
    border-radius: 3px;
    box-shadow: 0 -1px 0 rgba(0, 0, 0, .04), 0 1px 1px rgba(0, 0, 0, .25);

    color: #757575;
    font-size: 14px;
    font-weight: 500;
    font-family: -apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen,Ubuntu,Cantarell,"Fira Sans","Droid Sans","Helvetica Neue",sans-serif;

    background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAyMyAyMyI+PHBhdGggZmlsbD0iI2YzZjNmMyIgZD0iTTAgMGgyM3YyM0gweiIvPjxwYXRoIGZpbGw9IiNmMzUzMjUiIGQ9Ik0xIDFoMTB2MTBIMXoiLz48cGF0aCBmaWxsPSIjODFiYzA2IiBkPSJNMTIgMWgxMHYxMEgxMnoiLz48cGF0aCBmaWxsPSIjMDVhNmYwIiBkPSJNMSAxMmgxMHYxMEgxeiIvPjxwYXRoIGZpbGw9IiNmZmJhMDgiIGQ9Ik0xMiAxMmgxMHYxMEgxMnoiLz48L3N2Zz4=);
    background-color: white;
    background-repeat: no-repeat;
    background-position: 12px 11px;
    background-size: 18px 18px;
}

.login-with-microsoft-btn:hover {
    box-shadow: 0 -1px 0 rgba(0, 0, 0, .04), 0 2px 4px rgba(0, 0, 0, .25);
}

.login-with-microsoft-btn:active {
    background-color: #eeeeee;
}

.login-with-microsoft-btn:focus {
    outline: none;
    box-shadow:
            0 -1px 0 rgba(0, 0, 0, .04),
            0 2px 4px rgba(0, 0, 0, .25),
            0 0 0 3px #c8dafc;
}

.login-with-microsoft-btn:disabled {
    filter: grayscale(100%);
    background-color: #ebebeb;
    box-shadow: 0 -1px 0 rgba(0, 0, 0, .04), 0 1px 1px rgba(0, 0, 0, .25);
    cursor: not-allowed;
}

.btn {
    display: inline-block;
    font-weight: 400;
    color: #212529;
    text-align: center;
    vertical-align: middle;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    background-color: transparent;
    border: 1px solid transparent;
    padding: 0.375rem 0.75rem;
    font-size: 1rem;
    line-height: 1.5;
    border-radius: 2px;
    transition: color .15s ease-in-out,
    background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out !important;
}

.btn:hover {
    color: white !important;
    box-shadow: none;
}


.btn-outline-primary {
    background-color: transparent!important;
    border-color: rgba(0,123,255,.75)!important;
    border-width: 1px;
    color: #007bff!important;
}

.btn-outline-primary:hover {
    color: #fff!important;
    background: #003e80!important;
    box-shadow: none;
}

.btn-outline-danger {
    background-color: transparent!important;
    border-color: rgba(231,76,60,.75)!important;
    border-width: 1px;
    color: #e74c3c!important;
}

.btn-outline-danger:hover {
    color: #fff!important;
    background: #921e12!important;
    box-shadow: none;
}

.btn-outline-success {
    background-color: transparent!important;
    border-color: rgba(0,188,140,.75)!important;
    border-width: 1px;
    color: #00bc8c!important;
}

.btn-outline-success:hover {
    color: #fff!important;
    background: #003d2d!important;
    box-shadow: none;}

/* ALERTS */

.alert-warning .tag-warning {
    background-color: rgba(253,126,20,.75)!important;
    border-color: #fd7e14!important;
    color: #fff!important;
}

.alert-danger, .tag-danger {
    background: #e54d42 !important;
    border-left-color: #b82e24 !important;
    color: white !important;
    margin-bottom: 8px !important;
}
.alert-success, .tag-success {
    background: #68cd86 !important;
    border-left-color: #42a85f !important;
    color: white !important;
}

.alert {
    position: fixed;
    z-index: 5000;
    width: 300px;
    top: 10px;
    right: 10px;
    transition: all 300ms ease 0s;
    font-size: 12px;
    padding: 10px;
    margin: 0 5px 5px;
    color: #fff;
    background: transparent;
    border-left: 5px solid transparent;
    text-align: left;
}

ul {
    list-style-type: none;
}

.pointer {
    cursor: pointer;
}
