 @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');
 *{
    font-family: 'Poppins', sans-serif;
    margin:0;
    /*padding:0;*/
    box-sizing: border-box;
 }
 
 .site-header{
  width:100%;
  background-color: rgba(0, 0, 0, .85);
    -webkit-backdrop-filter: saturate(180%) blur(20px);
    backdrop-filter: saturate(180%) blur(20px);

    transition: ease-in-out color .15s;
}
.site-header .container {
  display: flex;
  justify-content: space-around;
  align-items: center;
  margin: 5px auto;
  padding: 10px 15px 10px 15px; 

}
.site-header .container a {
    color: #fff;
  outline: none;
  text-decoration:none;
}


.home-container {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;

    background: #25252b;
}

.home-container .box-home {
    position: relative;
    min-height: 100vh;
    /*width: 600px;*/
    /*height: 600px;*/
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}
.home-container .box-home .alertas {
    max-width: 350px;
}
    
    
.home-container .box-home > form {
    width: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 20px;
    /*padding: 0 40px;*/
}
.home-container .box-home form h2 {
    color: #fff;
    font-size: 4rem;
    font-weight: 600;
}
.home-container .box-home form input {
    position: relative;
    font-size: 2rem;
    width: 85%;
    background: rgba(255, 255, 255, 0.1);
    padding: 10px 15px;
    border: none;
    outline: none;
    border-radius: 5px;
    color: #fff;
    letter-spacing: 0.05em;
    text-align: center;
}

.home-container .box-home form button {
    position: relative;
    font-size: 2rem;
    width: 85%;
    background: rgba(255, 255, 255, 0.1);
    padding: 10px 15px;
    border: none;
    outline: none;
    border-radius: 5px;
    color: #fff;
    letter-spacing: 0.05em;
    text-align: center;
}

.home-container .box-home form .group {
    position: relative;
    width: 85%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.home-container .box-home form .group input[type="radio"]{
    display: none;
    outline: none;
} 
.home-container .box-home form .group input[type="radio"]:checked + label:nth-child(2) {
    background: green;
} 
.home-container .box-home form .group input[type="radio"]:checked + label:nth-child(4) {
    background: red;
} 

.home-container .box-home .group > label {
    text-align: center;
    cursor: pointer;
    width: 45%;
    padding: 8px;
    border-radius: 5px;
    color: #fff;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    transition: .3s;
    
}

.home-container .box-home .group > label:hover {
    background: #2d2d39;
}


.home-container .box-home form input::placeholder {
    color: rgba(255, 255, 255, 0.5);
    letter-spacing: 0.05em;
    text-transform: uppercase;
}


.home-container .box-home form button {
    font-weight: 600;
    background: #2d2d39;
    color: #fff;
    cursor: pointer;
    transition: 0.5s;
}

.home-container .box-home form button:hover {
    background: #ff2770;
}

div[page-name="LoginFuncionarioForm"] {
 background-color: #25252b !important;;
}

div[page-name="LoginFuncionarioForm"] .card{
    width: 400px !important;
    margin: auto;
    margin-top: 200px;
    border-radius: 5px;
}

div[page-name="LoginFuncionarioForm"] .tfield{
    padding-left: 30px !important;
}
/**** VISAL ****/

/* Adicione ao seu custom_ponto.css */

/* Destaque para o tipo selecionado automaticamente */
.radio-destacado {
    background: linear-gradient(45deg, #28a745, #20c997);
    color: white !important;
    font-weight: bold;
    padding: 8px 16px;
    border-radius: 8px;
    transform: scale(1.05);
    transition: all 0.3s ease;
    box-shadow: 0 4px 8px rgba(40, 167, 69, 0.3);
}

/* Animação suave para transições */
.group label {
    transition: all 0.3s ease;
    cursor: pointer;
    padding: 6px 12px;
    border-radius: 6px;
    margin: 0 5px;
}

/* Hover effect nos labels */
.group label:hover {
    background-color: rgba(0, 123, 255, 0.1);
    transform: translateY(-2px);
}

/* Estilo para mensagens informativas */
#mensagem-alert {
    border-radius: 8px;
    border-left: 4px solid #17a2b8;
    animation: fadeInSlide 0.5s ease-out;
}

/* Animação de entrada para mensagens */
@keyframes fadeInSlide {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Destaque especial para entrada (verde) */
input[name="radio"][value="E"]:checked + label {
    background: linear-gradient(45deg, #28a745, #20c997);
    color: white;
}

/* Destaque especial para saída (laranja) */
input[name="radio"][value="S"]:checked + label {
    background: linear-gradient(45deg, #fd7e14, #e83e8c);
    color: white;
}

/* Loading state para o botão */
.btn-submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* Indicador visual de CPF completo */
#cpf.cpf-completo {
    border: 2px solid #28a745;
    box-shadow: 0 0 5px rgba(40, 167, 69, 0.3);
}
