
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Amaranth", sans-serif;
}

body {
    background: linear-gradient( to right, #0b1215 0,  rgb(0, 153, 255) 100%);
}

form {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    font-size: 28px;
    gap:10px;
    
}

.inputDados {
    text-align: start;
    width: 20%;
    padding: 2px;
    border: transparent;
}

.dadosMenores {
    text-align: start;
    width: 15%; 
    padding: 2px;
    border: transparent;
}

#buscarDados {
    width: 20%;
    height: 8vh;
    border-radius: 4px;
    cursor: pointer;
    font-size: 100%;
    border: transparent;
    background-color: rgb(16, 155, 62, 0.788);
}

#buscarDados:hover {
    background-color: rgba(0, 0, 0, 0.575);
    color: rgb(255, 255, 255);
    
}

#buscarDados:active {
    transform: scale(0.95);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

#BtnCadastrar {
    font-size: large;
    cursor: pointer;
    border-radius: 4px;
    border: transparent;
    padding: 4px;
}

#dot-loading {
    display: none;
}

#ponto-1,
#ponto-2,
#ponto-3,
#ponto-4 {
    color: rgba(23, 255, 2, 0.658);
    border-radius: 4px;
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.5);
        opacity: 1;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

#ponto-1:nth-child(1) {
    animation-delay: 0s;
}

#ponto-2:nth-child(2) {
    animation-delay: 0.1s;
}

#ponto-3:nth-child(3) {
    animation-delay: 0.3s;
}

#ponto-4:nth-child(4) {
    animation-delay: 0.5s;
}

#BtnCadastrar:hover {
    background-color: rgba(16, 155, 62, 0.788);
    color: rgb(231, 231, 231);
}

#BtnCadastrar:active {
    transform: scale(0.95);
    box-shadow: 0 2px 5px rgba(255, 0, 0, 0);
}

#btnReset {
    font-size: large;
    cursor: pointer;
    border-radius: 4px;
    border-radius: 4px;
    border: transparent;
    padding: 4px;
}

#btnReset:hover {
    background-color: rgba(8, 6, 6, 0.774);
    color: rgb(231, 231, 231);
}

#btnReset:active {
    transform: scale(0.95);
    box-shadow: 0 2px 5px rgb(0, 0, 0);
}

#containerPicture {
    display: flex;
    justify-content: center;
    margin-top: 8px;
}

picture img {
    border-radius: 4px;
}

#message {
    display: flex;
    justify-content: center;
    color: rgba(240, 240, 240, 0.8);
}

#containerBtnListar {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 8px;
    gap: 48px;
}

#getUsersdate {
    cursor: pointer;
    border: transparent;
    border-radius: 4px;
    padding: 8px;
    background-color: rgba(16, 155, 62, 0.788);
    color: rgb(231, 231, 231);
    padding: 4px;

}

#getUsersdate:hover {
    background-color: rgb(0, 0, 0);
    color: rgba(255, 255, 255, 0.541);
}

#togglebtn {
    cursor: pointer;
    border: transparent;
    border-radius: 4px;
    padding: 8px;
    background-color: rgba(16, 155, 62, 0.788);
    color: rgb(231, 231, 231);
    padding: 4px;
}

#togglebtn:hover {
    background-color: rgb(0, 0, 0);
    color: rgba(255, 255, 255, 0.541); 
}

#userList {
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow-y: scroll;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    background-color: #f9f9f9;
    margin-top: 2px;
    background: linear-gradient( to right, #0b1215 0,  rgb(0, 153, 255) 100%);
    border: transparent;
}

#userList::-webkit-scrollbar {
    width: 10px;
}

span {
    color: rgba(17, 197, 77, 0.788);
    padding-left: 8px;
    padding-right: 8px;
}

.btnRemover {
    display: flex;
    cursor: pointer;
    border: transparent;
    border-radius: 4px;
    color: rgba(255, 6, 6, 0.63);
    font-weight: bold;
    padding: 4px;
    margin-left: 2px;

}

.containerDate {
    display: flex;
    padding-top: 10px;
    justify-content: center;
    background: linear-gradient( to right, #0b1215 0,  rgb(0, 153, 255) 100%);
    color: rgb(255, 255, 255);
    text-decoration: underline;
    
}

#imgsmall {
    border-radius: 12px;
}

.loading {
    display: flex;
    justify-content: center;
    font-weight: bolder;
}

@media only screen and (max-width: 480px) {

    #buscarDados {
        width: 40%;
    }

    .inputDados {
        width: 50%;
    }

    .dadosMenores {
        width: 25%;
    }

    .btnRemover {

    }

    .containerDate {
        display: flex;
        padding: 10px;
        font-size: 10px;
    
    }

    #getUsersdate:hover {
        background-color: rgba(16, 155, 62, 0.788); 
        color: rgba(0, 0, 0, 0.575);
    }

    #togglebtn:hover {
        background-color: rgba(16, 155, 62, 0.788); 
        color: rgba(0, 0, 0, 0.575);
    }
}

