@import url(../font-face/font-face/fonts.css);

body {
    font-family: PantonNarrow, sans-serif;
    background-image: url('/assets/images/Background-Administrador.png');
    background-size: cover;
    background-repeat: no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}

.container {
    background: radial-gradient(circle at left center, rgba(145,206,227,1)  25%, transparent 60%),
        radial-gradient(circle at right center, rgba(145,206,227,1)  25%, transparent 60%);
    border-radius: 15px;
    padding: 40px;    
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    width: 30%;
    /*max-width: 400px;*/
    
    position: absolute;
    left: 15%;        
    
    align-items: center;
    
    
}

h2 {
    text-align: center;
    color: #333;
}

h3 {
    text-align: center;
    color: #333;
}

.input-group {
    margin-bottom: 20px;
}

.input-group label {
    display: block;
    font-weight: bold;
    margin-bottom: 5px;
    color: #555;
}

.input-group input {
    width: 100%;
    padding: 15px;
    border-radius: 25px;
    border: 1px solid #005bb5;
    background-color: rgba(255, 255, 255, .4);  
    font-size: 16px;
}

/*.input-group input:focus {
    outline: none;
    border-color: #1f663c;
}*/
.error-message {
    margin-bottom: 10px; /* Espacio entre el error y el campo de entrada */
}
.send_link
{
    background-color: #005bb5;
    color: white;
    width: 100%;
    padding: 10px;
    border: none;
    border-radius: 25px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}
.send_link:hover
{
    background-color: #0381ffda;
    /*background-color: #0381ffda;*/
    color: white;
}
.btn-submit {
    background-color: #005bb5;
    color: white;
    width: 100%;
    padding: 10px;
    border: none;
    border-radius: 25px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-submit:hover {
    background-color: #0381ffda;
}

.footer {
    text-align: center;
    margin-top: 20px;
    font-size: 14px;
    color: #777;
}

.footer span {
    color: black;
    font-size: 14px;        
}

.footer a {
    background-color: transparent;    
    color: #005bb5;
    padding: 5px 15px;
    font-size: 14px;
    font-weight: bold;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.footer a:hover {
    color:  #0381ffda;
    
    
}

.bg-danger-light {
    background-color: #f8d7da;
    /* Color rojo tenue */
  }
  
  .bg-danger-light-employe {
    /* border: 2px solid red;*/
    background-color: #f8d7da;
  }
  
  .bg-green-light-employe{
    background-color: #d4edda;
    /* Color verde tenue */
    
  }
  
  .bg-green-light {
    background-color: #d4edda;
    /* Color verde tenue */
    /* border: 2px solid #d4edda;*/
  }
  
  .bg-yellow-light {
    background-color: #fff3cd;
    /* Color amarillo tenue */
    /*border: 2px solid #fff3cd;*/
  }