﻿/* Sticky footer styles
-------------------------------------------------- */
html {
  position: relative;
  min-height: 100%;
}

body {
  /* Margin bottom by footer height */
  margin-bottom: 60px;
}
.footer {
  position: absolute;
  bottom: 0;
  width: 100%;
  white-space: nowrap;
  /* Set the fixed height of the footer here */
  height: 60px;
  line-height: 60px; /* Vertically center the text there */
}
/**Desde aqui*/

/* wwwroot/css/form-styles.css */

/* Estilo personalizado para los inputs y selects del formulario */
.form-control-custom {
    background-color: #e6f4f7;
    border: 1px solid #d1e8ee; /* Borde sutil para mejor visibilidad */
    font-size: 14px;
    height: 40px;
    color: #333;
}

    .form-control-custom:focus {
        background-color: #fff;
        border-color: #86b7fe;
        outline: 0;
        box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, .25);
    }

/* Estilo para los títulos de cada sección del formulario */
.form-section-header {
    font-weight: bold;
    font-size: 1.1rem;
    padding-bottom: 8px;
    margin-bottom: 20px;
    border-bottom: 4px solid #001287;
}

    .form-section-header.secondary {
        border-bottom-color: #5ca321;
    }

/* Estilos para el mensaje de éxito */
.success-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 40px 0;
}

.success-text {
    font-weight: bold;
    font-size: 23px;
    margin-top: 20px;
}