/* BASIC */

html {
    /*background-color: #56baed;*/
    background: url(images/EmbajadoresFondo.png) no-repeat center center fixed;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
}

.container-ieeg {
    background: rgba(0, 0, 0, 0.01)
}

.overlay:before {
    position: absolute;
    content: " ";
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: block;
    z-index: 0;
    background-color: rgba(255, 255, 255, 0.304);
}

button {
    background-color: #e12362;
    color: #FFF;
}


/*

.labelreg{
  color:#e12362;
  font:bold 12px arial, sans-serif;
}

input[type=text],input[type=email], input[type=password], textarea {
  background-color:rgba(123,0,85, 0.651);
  color:#FFF;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
input[type=text]:focus, input[type=email]:focus {
  background-color: #fff;
  border: 2px solid #e12362;
}
*/

.headeravisos {
    background-color: rgba(123, 0, 85, 0.651);
    color: #FFF;
}

body {
    /* font-family: "Poppins", sans-serif;
    height: 100vh; */
    background-color: transparent;
}

.container,
.card {
    background-color: rgba(255, 255, 255, 0.9); /* Fondo semitransparente */
}


a {
    color: #92badd;
    display: inline-block;
    text-decoration: none;
    font-weight: 400;
}

h2 {
    text-align: center;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    display: inline-block;
    margin: 40px 8px 10px 8px;
    color: #cccccc;
}


/* STRUCTURE */

.wrapper {
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    width: 100%;
    min-height: 100%;
    padding: 20px;
}

#formContent {
    -webkit-border-radius: 10px 10px 10px 10px;
    border-radius: 10px 10px 10px 10px;
    background: #fff;
    padding: 30px;
    width: 90%;
    max-width: 850px;
    position: relative;
    padding: 0px;
    -webkit-box-shadow: 0 30px 60px 0 rgba(0, 0, 0, 0.3);
    box-shadow: 0 30px 60px 0 rgba(0, 0, 0, 0.3);
    text-align: center;
}

#formFooter {
    background-color: #f6f6f6;
    border-top: 1px solid #dce8f1;
    padding: 25px;
    text-align: center;
    -webkit-border-radius: 0 0 10px 10px;
    border-radius: 0 0 10px 10px;
}


/* TABS */

h2.inactive {
    color: #cccccc;
}

h2.active {
    color: #0d0d0d;
    border-bottom: 2px solid #5fbae9;
}


/* ANIMATIONS */


/* Simple CSS3 Fade-in-down Animation */

.fadeInDown {
    -webkit-animation-name: fadeInDown;
    animation-name: fadeInDown;
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}

@-webkit-keyframes fadeInDown {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0);
    }

    100% {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

@keyframes fadeInDown {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0);
    }

    100% {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}


/* Simple CSS3 Fade-in Animation */

@-webkit-keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@-moz-keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.fadeIn {
    opacity: 0;
    -webkit-animation: fadeIn ease-in 1;
    -moz-animation: fadeIn ease-in 1;
    animation: fadeIn ease-in 1;
    -webkit-animation-fill-mode: forwards;
    -moz-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
    -webkit-animation-duration: 1s;
    -moz-animation-duration: 1s;
    animation-duration: 1s;
}

.fadeIn.first {
    -webkit-animation-delay: 0.4s;
    -moz-animation-delay: 0.4s;
    animation-delay: 0.4s;
}

.fadeIn.second {
    -webkit-animation-delay: 0.6s;
    -moz-animation-delay: 0.6s;
    animation-delay: 0.6s;
}

.fadeIn.third {
    -webkit-animation-delay: 0.8s;
    -moz-animation-delay: 0.8s;
    animation-delay: 0.8s;
}

.fadeIn.fourth {
    -webkit-animation-delay: 1s;
    -moz-animation-delay: 1s;
    animation-delay: 1s;
}


/* Simple CSS3 Fade-in Animation */

.underlineHover:after {
    display: block;
    left: 0;
    bottom: -10px;
    width: 0;
    height: 2px;
    background-color: #56baed;
    content: "";
    transition: width 0.2s;
}

.underlineHover:hover {
    color: #0d0d0d;
}

.underlineHover:hover:after {
    width: 100%;
}

.switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 34px;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    -webkit-transition: .4s;
    transition: .4s;
}

.slider:before {
    position: absolute;
    content: "";
    height: 26px;
    width: 26px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    -webkit-transition: .4s;
    transition: .4s;
}

input:checked+.slider {
    background-color: #65174a;
    /*#2196F3;*/
}

input:focus+.slider {
    box-shadow: 0 0 1px #65174a;
    /*#2196F3;*/
}

input:checked+.slider:before {
    -webkit-transform: translateX(26px);
    -ms-transform: translateX(26px);
    transform: translateX(26px);
}


/* Rounded sliders */

.slider.round {
    border-radius: 34px;
}

.slider.round:before {
    border-radius: 50%;
}

.logo {
    height: 115px;
    width: 241px;
    display: block;
    margin: auto;
    left: calc((100% - 195px) / 2);
    z-index: 100000;
    margin-top: 0px;
    justify-items: left;
}

.logo30 {
    height: 115px;
    width: 241px;
    display: block;
    margin: auto;
    left: calc((100% - 195px) / 2);
    z-index: 100000;
    margin-top: 0px;
    justify-items: right;
}

.logo2 {
    height: 95px;
    width: 195px;

}

.bg-ieeg {
    background-color: #65174a;
}

footer {
    text-align: center;
    padding: 3px;
    color: white;
}

.row {
    margin-top: 5px;
}

input[type=text]:hover {
    box-shadow: 0 0 5pt 0.5pt #D3D3D3;
}

input[type=text]:focus {
    box-shadow: 0 0 5pt 2pt #D3D3D3;
    outline-width: 0px;
}

::-webkit-calendar-picker-indicator {
    margin-right: -.35em; 
    filter: invert(48%) sepia(30%) saturate(0%) hue-rotate(203deg) brightness(90%) contrast(95%); 
    cursor: pointer;
    
  }
  ::-webkit-calendar-picker-indicator:hover {
    filter: invert(60%) sepia(100%) saturate(1854%) hue-rotate(3deg) brightness(107%) contrast(106%);
  } 

  .footer-bottom{
    width: 100vw;
    padding: 20px;
    padding-bottom: 40px;
    text-align: right;
    color: #fff
}

/* ============= */

.input-icon-group {
  position: relative;
  width: 100%;
}

.input-icon-group i {
  position: absolute;
  top: 50%;
  left: 18px; /* un poco más hacia afuera para espacio */
  transform: translateY(-50%);
  font-size: 2rem; /* ícono más grande */
  background: linear-gradient(45deg, #e12362, #e12362);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  pointer-events: none;
  cursor: pointer;
  transition: color 0.4s ease, transform 0.3s ease;
  user-select: none;
}

.input-icon-group input {
  width: 100%;
  padding: 1.2rem 1.2rem 1.2rem 4.5rem; /* más padding para más altura y espacio para icono */
  font-size: 1.5rem; /* texto más grande */
  border: 2.5px solid #ccc;
  border-radius: 8px;
  transition: border-color 0.4s ease, box-shadow 0.4s ease;
  outline: none;
  box-shadow: inset 0 1px 3px rgba(0,0,0,0.06);
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.input-icon-group input::placeholder {
  color: #aaa;
  font-style: italic;
  transition: opacity 0.3s ease;
}

.input-icon-group input:focus {
  border-color: #e75967;
  box-shadow: 0 0 15px rgba(179, 140, 230, 0.6);
}

.input-icon-group input:focus::placeholder {
  opacity: 0.6;
}

.input-icon-group input:focus + i {
  color: #00c6ff;
  transform: translateY(-50%) scale(1.1);
}

fieldset {
  border: 2px solid #dee2e6;
  background-color: #fff;
}

legend {
  font-size: 1.5rem;
  font-weight: bold;
  color: #0d6efd;
}

.input-icon-group input,
.input-icon-group select {
  width: 100%;
  padding-left: 4.8rem; /* espacio para el ícono */
}

.input-icon-group select,
.input-icon-group input {
  padding-left: 4.8rem;
}

input[type="file"]::file-selector-button {
    background-color: #65174a;
    color: white;
    border: none;
    padding: 6px 12px;
    border-radius: 4px;
    cursor: pointer;
}

input[type="file"]::file-selector-button:hover {
    background-color: #84265e;
}

.text-danger {
    display: inline;
    position: static;
    z-index: auto;
}

.text-purple {
    color: #6f42c1 !important; 
}
.text-pink {
    color: #e12362 !important; 
}

.icono-verde {
        color: #28a745 !important; /* verde Bootstrap */
}

.icono-input {
        color: #e75967; /* gris por defecto */
        transition: color 0.3s ease;
}

footer img.logo2 {
  height: 150px;
  width: auto;
  margin-left: 12px;
  vertical-align: middle;
}

.footer-custom {
  color: #000;             /* Negro */
  font-size: 1.1rem;       /* Tamaño más grande, ajusta según necesites */
  font-weight: 500;        /* Opcional: un poco más de grosor */
  display: flex;           /* Para alinear texto e imagen */
  align-items: center;
  gap: 12px;               /* Espacio entre texto e imagen */
  padding: 10px 20px;      /* Opcional: agrega espacio interno */
}

