
body {
    font-family: 'Segoe UI', sans-serif;
    background-color: #f8fafc;
    margin: 0;
    padding: 0;
}
.container {
    max-width: 640px;
    margin: 40px auto;
    padding: 25px;
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0px 2px 10px rgba(0,0,0,0.08);
}
h1 {
    text-align: center;
    color: #2c3e50;
    font-size: 22px;
}
label {
    display: block;
    margin-bottom: 5px;
    font-weight: 500;
    color: #34495e;
    font-size: 13px;
}
input, textarea, select {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ccd6dd;
    border-radius: 6px;
    font-size: 14px;
}
button {
    width: 100%;
    padding: 12px;
    background-color: #a5d8ff;
    color: #2c3e50;
    border: none;
    border-radius: 6px;
    font-size: 15px;
    font-weight: bold;
    cursor: pointer;
    opacity: 0.5;
    transition: all 0.3s ease;
}
button:enabled {
    opacity: 1;
}
button:hover {
    background-color: #74c0fc;
    color: #1c1c1c;
}
#mensagem {
    text-align: center;
    margin-top: 20px;
    color: #c0392b;
}
#authSection {
    display: none;
    text-align: center;
}
#authSection p {
    font-weight: bold;
    font-size: 18px;
    color: red;
}
#timer {
    font-size: 22px;
    color: #e74c3c;
    margin-top: 10px;
}
.img-cliente img, .lgpd-lite img {
    max-width: 100px;
    display: block;
    margin: 0 auto 10px auto;
}
p.intro {
    text-align: center;
    color: #7f8c8d;
    font-size: 13px;
    margin-bottom: 10px;
}
.checkbox-container {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 12px;
    color: #4F4F4F;
    margin-bottom: 20px;
}
.checkbox-container input[type="checkbox"] {
    margin-top: 3px;
}

  /* Estilos do modal do aviso de privacidade */
  #avisoModal {
    display: none;
    position: fixed;
    z-index: 9999;
    inset: 0;
    background: rgba(0,0,0,0.5);
    align-items: center;
    justify-content: center;
  }
  #avisoModal.active {
    display: flex;
  }
  #avisoModal .modal-content {
    background: white;
    max-width: 480px;
    width: 90%;
    padding: 25px 30px;
    border-radius: 12px;
    position: relative;
    max-height: 80vh;
    overflow-y: auto;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
	font-size: 0.85rem;
	line-height: 1.4;
  }
  #avisoModal .btn-close {
    position: absolute;
    top: 15px;
    right: 20px;
    background: transparent;
    border: none;
    font-size: 1.5rem;
    font-weight: 700;
    color: #888;
    cursor: pointer;
  }
  #avisoModal .btn-close:hover {
    color: #e74c3c;
  }
  #avisoModal .btn-accept {
     font-size: 0.9rem;
    padding: 10px 0;
    border-radius: 6px;
    width: 100%;
    background-color: #4a90e2;
    color: white;
    font-weight: 600;
    border: none;
    cursor: pointer;
    box-shadow: 0 3px 10px rgba(74,144,226,0.5);
    transition: background-color 0.3s ease;
  }
  #avisoModal .btn-accept:hover {
    background-color: #357abd;
  }