/* Add here all your CSS customizations */
/* Fondo general */
body {
  background: url('../img/bg-desktop.png') no-repeat center center fixed;
  background-size: cover;
  font-family: 'Poppins', sans-serif;
  color: #fff;
  margin: 0;
  padding: 0;
}

.img-wd{
    width: 100%;
}

.logo-grandix{
    width: 70%;
}

.header-title{
    background-color: black;
    width: 100%;
    border-radius: 5px;
}

.panel-register{
    margin-left: 20px;
    margin-right: 20px;
}

.text-label-register{
    font-weight: bold;
    color: black;
    font-size:14px;
}

.terminos{
    color: white;
}

.btn-register{
    color: yellow;
    background-color: black;
    font-weight: bolder;
}

.btn-register:hover{
    color: yellow;
    background-color: #584e4e;
    font-weight: bolder;
}

.clan-ico{
    float: left;
    margin-left: 10px;
    position: absolute;
}

.subtitle-register{
    text-align: center;
    color: yellow;
    font-size: 19px;
}

.new-register{
    border: solid;
    background: #ffbc97;
}

/* Panel de registro */
.card-sign {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 15px;
  box-shadow: 0 0 20px rgba(0,0,0,0.3);
  padding: 30px;
  max-width: 500px;
  margin: auto;
  color: #333;
}

/* Título */
.card-title-sign h2 {
  color: #ff6600;
  font-weight: 700;
  font-size: 24px;
}

/* Botón principal */
.btn-primary {
  background-color: #ff6600;
  border-color: #ff6600;
  font-weight: 600;
  padding: 10px 20px;
  transition: background-color 0.3s ease;
}

.btn-primary:hover {
  background-color: #e65c00;
  border-color: #e65c00;
}

/* Checkbox */
.checkbox-custom input[type="checkbox"] {
  accent-color: #ff6600;
}

/* Enlaces */
a {
  color: #ff6600;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

/* Responsive ajustes */
@media (max-width: 768px) {
  

    body {
      background: url('../img/bg-mobile.png') no-repeat center center fixed;
      background-size: cover;
      font-family: 'Poppins', sans-serif;
      color: #fff;
      margin: 0;
      padding: 0;
    }


}