 @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%;
  position: sticky;
  top: 0;
  z-index: 100;
  background: linear-gradient(135deg, rgba(15,15,25,.96) 0%, rgba(30,20,50,.96) 100%);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid rgba(255,255,255,.07);
  box-shadow: 0 2px 24px rgba(0,0,0,.4);
}
.site-header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 24px;
  max-width: 1200px;
  margin: 0 auto;
}
.site-header .logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.site-header .logo-icon {
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, #7c3aed, #4f46e5);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 14px rgba(124,58,237,.5);
}
.site-header .logo-icon .material-icons {
  font-size: 20px;
  color: #fff;
}
.site-header .logo-name {
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  letter-spacing: .4px;
  line-height: 1;
}
.site-header .btn-login {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 7px 16px;
  border-radius: 8px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  color: rgba(255,255,255,.85);
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
  transition: background .2s, border-color .2s, color .2s;
}
.site-header .btn-login:hover {
  background: rgba(124,58,237,.3);
  border-color: rgba(124,58,237,.6);
  color: #fff;
}
.site-header .btn-login .material-icons {
  font-size: 17px;
}


.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);
}
