﻿/*SMARK*/

* {
    font-family: Segoe UI, Tahoma, Geneva, Verdana, sans-serif;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 16px;
    vertical-align: baseline;
}

input {
    outline: none;
}

a {
    text-decoration: none
}

h1 {
    font-size: 16px
}

h2 {
    font-size: 18px
}

h3 {
    font-size: 20px
}

h4 {
    font-size: 22px
}

h5 {
    font-size: 24px
}

h6 {
    font-size: 26px
}

.link {
    color: dodgerblue;
    cursor: pointer
}

.link:hover {
    text-decoration: underline
}

.sombra-small {
    box-shadow: 0 0 6px rgba(0, 0, 0, 0.3);
}

.sombra-medium {
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
}

.sombra-big {
    box-shadow: 0 0 25px rgba(0, 0, 0, 0.5);
}

.conteiner {
    width: 100%;
    background-color: white;
    padding: 20px;
    border-radius: 5px
}

.linha::after {
    content: "";
    clear: both;
    display: table;
}

[class*="coluna-"] {
    width: 100%;
    float: left;
}

.coluna-95 {
    width: 95%
}

.coluna-90 {
    width: 90%
}

.coluna-85 {
    width: 85%
}

.coluna-80 {
    width: 80%
}

.coluna-75 {
    width: 75%
}

.coluna-70 {
    width: 70%
}

.coluna-66 {
    width: 66.66666666%
}

.coluna-65 {
    width: 65%
}

.coluna-60 {
    width: 60%
}

.coluna-55 {
    width: 55%
}

.coluna-50 {
    width: 50%
}

.coluna-45 {
    width: 45%
}

.coluna-40 {
    width: 40%
}

.coluna-35 {
    width: 35%
}

.coluna-33 {
    width: 33.33333333%
}

.coluna-30 {
    width: 30%
}

.coluna-25 {
    width: 25%
}

.coluna-20 {
    width: 20%
}

.coluna-15 {
    width: 15%
}

.coluna-10 {
    width: 10%
}

.coluna-5 {
    width: 5%
}

.coluna-0 {
    width: 1%
}

.modal {
    width: 100%;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1;
    opacity: 1;
    background-color: rgba(0, 0, 0, 0.44);
}

.modal-conteiner {
    width: 500px;
    background-color: white;
    margin: auto;
    border-radius: 10px;
    padding: 15px;
    position: relative;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.7);
}

.modal-conteiner-ico {
    height: 30px;
    width: 30px;
    background-color: white;
    border-radius: 50%;
    position: absolute;
    right: 10px;
    cursor: pointer;
    top: 10px;
    padding: 0 4px
}

.modal-conteiner-ico:hover {
    background-color: lightgray
}

.modal-interno {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    z-index: 2;
    opacity: 0.5;
    background-color: white
}

.btn {
    padding: 10px 25px;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 700;
    box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2), -2px -2px 4px rgba(0, 0, 0, 0.1);
    display: inline-block;
    float: right;
    margin-left: 10px
}

.btn:hover {
    opacity: 0.8
}

.btn-purple {
    border: 1px solid purple;
    background-color: purple;
    color: white;
    text-align: center
}

.btn-red {
    border: 1px solid red;
    background-color: red;
    color: white;
    text-align: center
}

.btn-white {
    border: 1px solid purple;
    background-color: white;
    color: purple;
    text-align: center
}

.btn-blue {
    background-color: #3498db;
    color: white;
    border: 1px solid #3498db;
    text-align: center
}

.btn-green {
    background-color: #3CB371;
    color: white;
    border: 1px solid #3CB371;
    text-align: center
}

.txt-box {
    padding: 8px 10px;
    border-radius: 4px;
    border: 1px solid gray;
    font-size: 18px;
    width: 100%;
    color: darkslategrey;
    margin-bottom: 15px
}

.tt-text-container {
    position: relative;
    display: flex;
    justify-content: center;
    align-content: center;
    align-items: center;
    border-radius: 50%
}

.tt-text {
    position: absolute;
    background-color: purple;
    color: white;
    bottom: 40px;
    padding: 8px 6px;
    border-radius: 3px;
    text-align: center;
    opacity: 0;
    visibility: hidden;
    z-index: 999;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    transition: opacity 0.3s
}

.tt-text::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border-width: 8px;
    border-style: solid;
    border-color: purple transparent transparent transparent;
}

.tt-text-container:hover {
    background-color: antiquewhite
}

.tt-text-container:hover .tt-text {
    visibility: visible;
    opacity: 1;
}

/*Força da senha ----------------------------------------*/
.barra-container {
    display: flex;
    gap: 5px;
}

.barra {
    flex: 1;
    height: 10px;
    background-color: #ddd;
    border-radius: 4px;
    transition: background-color 0.3s ease, width 0.3s ease;
}

.preenchida {
    width: 100%;
}

.fraca {
    background-color: red;
}

.media {
    background-color: yellow;
}

.forte {
    background-color: lightgreen;
}

/*----------------------------------------*/

.olho {
    cursor: pointer;
    float: right;
    position: absolute;
    color: darkslategray;
    right: 10px;
    font-size: 25px;
    top: -53px;
    right: 10px
}