body{
    margin: 0;
    background-color: #282828;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif
}

h4{
    color:green;
    display: none;
}

.modal {
display: none; /* Hidden by default */
position: fixed; /* Stay in place */
z-index: 1; /* Sit on top */
padding-top: 100px; /* Location of the box */
left: 0;
top: 0;
width: 100%; /* Full width */
height: 100%; /* Full height */
max-height: 90vh;
overflow: auto; /* Enable scroll if needed */
background-color: rgb(0,0,0); /* Fallback color */
background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
}

/* Modal Content */
.modal-content {
background-color: #fefefe;
margin: auto;
padding: 20px;
border: 1px solid #888;
width: 80%;
}

#close-modal{
    float: right;
    background-color: red;
    color: white;
    font-weight: bolder;
    font-size: larger;
    border-style: none;
    width:3em;
    height: 2em;
    border-radius: 10px;
    cursor: pointer;
}

#copiar-texto{
    background-color: green;
    color: white;
    font-weight: bolder;
    font-size: medium;
    border-style: none;
    width:8em;
    height: 2em;
    border-radius: 10px;
    cursor: pointer;
}

.close:hover,.close:focus {
color: #000;
text-decoration: none;
cursor: pointer;
}

.center-h{
    display: flex;
    justify-content: center;
    align-items: center;
}

.center-c{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

header{
    display:flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color:white;
    padding: 1em;
    gap:20px;
    background-color: black;
}

header button{
    background-color: blue;
    color:white;
    font-weight: 600;
    border-style: none;
    border-radius: 20px;
    width:10rem;
    height: 3rem;
    cursor: pointer;
}

header button:hover{
    background-color: darkblue;
    box-shadow: 0 0 0.1vw 0.4vw #e0f7fa,0 0 0.4vw 0.6vw #00e5ff,0 0 1vw 0.4vw #26c6da;
    transform: scale(1.05);
    transition: transform 0.5s ease-in-out;
}

select{
    background-color: blue;
    color:white;
    border-style: none;
    border-radius: 10px;
    padding: 1em;
    font-weight: 600;
    cursor: pointer;
}

#limpa_campo_uplink,#limpa_campo_dedicados{
    background-color: green;
    color: white;
    border-style: none;
    border-radius: 15px;
    width:8rem;
    height: 3rem;
    cursor: pointer;
}

#limpa_campo_uplink:hover,#limpa_campo_dedicados:hover{
    background-color: darkgreen;
}


#conteudo{
    display: flex;
    justify-content: center;
    align-items: center;
}

.card-dados{
    margin: 30px 0;
    background-color: white;
    border-radius: 20px;
    width:40rem;
    max-width: 75vw;
    padding: 1.5em;
    text-align: center;
}

.card-dados form{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    max-height: 100%;
    width: 100%;
    height: auto;
    gap:15px;
}
.card-dados form input{
    width: 100%;
    height: 1.5em;
    font-size: large;
}

.card-dados form label{
    font-size: 1em;
}

.card-dados button{
    background-color: blue;
    border-style: none;
    border-radius: 20px;
    padding: 0.5em;
    color: white;
    font-weight: bold;
    width:8rem;
    height: 3rem;
    margin-top: 20px;
    cursor: pointer;
}

.card-dados button:hover{
    background-color: darkblue;
}

#clientes-dedicados{
    display: none;
}

#importar-community{
    display:none;
}