* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

@font-face {
    font-family: 'Nunito';
    src: url('fonts/nunito/Nunito-Black.ttf') format('truetype');
    font-weight: 900;
    font-style: normal;
}

@font-face {
    font-family: 'Nunito';
    src: url('fonts/nunito/Nunito-BlackItalic.ttf') format('truetype');
    font-weight: 900;
    font-style: italic;
}

@font-face {
    font-family: 'Nunito';
    src: url('fonts/nunito/Nunito-Bold.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
}

@font-face {
    font-family: 'Nunito';
    src: url('fonts/nunito/Nunito-BoldItalic.ttf') format('truetype');
    font-weight: bold;
    font-style: italic;
}

@font-face {
    font-family: 'Nunito';
    src: url('fonts/nunito/Nunito-ExtraBold.ttf') format('truetype');
    font-weight: 800;
    font-style: normal;
}

@font-face {
    font-family: 'Nunito';
    src: url('fonts/nunito/Nunito-ExtraBoldItalic.ttf') format('truetype');
    font-weight: 800;
    font-style: italic;
}

@font-face {
    font-family: 'Nunito';
    src: url('fonts/nunito/Nunito-Light.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
}

@font-face {
    font-family: 'Nunito';
    src: url('fonts/nunito/Nunito-LightItalic.ttf') format('truetype');
    font-weight: 300;
    font-style: italic;
}

@font-face {
    font-family: 'Nunito';
    src: url('fonts/nunito/Nunito-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Nunito';
    src: url('fonts/nunito/Nunito-Italic.ttf') format('truetype');
    font-weight: normal;
    font-style: italic;
}

@font-face {
    font-family: 'Nunito';
    src: url('fonts/nunito/Nunito-SemiBold.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
}

@font-face {
    font-family: 'Nunito';
    src: url('fonts/nunito/Nunito-SemiBoldItalic.ttf') format('truetype');
    font-weight: 600;
    font-style: italic;
}

@font-face {
    font-family: 'Nunito';
    src: url('fonts/nunito/Nunito-Thin.ttf') format('truetype');
    font-weight: 100;
    font-style: normal;
}

@font-face {
    font-family: 'Nunito';
    src: url('fonts/nunito/Nunito-ThinItalic.ttf') format('truetype');
    font-weight: 100;
    font-style: italic;
}

body {
    font-family: 'Nunito', sans-serif;
}

h1 {
    font-family: 'Nunito', sans-serif;
    font-weight: 900; /* Black */
}

h2 {
    font-family: 'Nunito', sans-serif;
    font-weight: 600; /* SemiBold */
}

p {
    font-family: 'Nunito', sans-serif;
    font-weight: normal; /* Regular */
}

em {
    font-family: 'Nunito', sans-serif;
    font-style: italic; /* Italic */
}


header {
    justify-content: center;
    align-items: center;
    background-color: #0a141d; /* Azul oscuro */
    color: rgb(228, 108, 36); /* Texto naranja */
    display: flex;
    min-height: 50px;
    padding: 1%;
    box-shadow: 0 0 15px #0a141d;
    text-shadow: 0 0 5px rgba(228, 108, 36, 0.5);
}

body {
    background-color: rgb(32, 39, 69); /* Azul oscuro */
    color: #ffffff; /* Texto blanco */
}

h1
{
    color:#fff !important;
}

.form {
    background-color: #f56e0f; /* Gris oscuro */
    box-shadow: 0 0 5px black;
    text-align: center;
    padding-left: 40px;
    padding-right: 40px;
    overflow-y: auto;
}

.formulario .section-title {
    font-size: 24px;
    color: #e0e0f0;
    margin-bottom: 20px;
}

input[type="text"], input[list], input[type="date"]{
    padding: 17px;
    border-radius: 25px;
    border: 2px solid #fff;
    outline: none;
    color: #060606;
    font-size: 16px;
}

.form-select {
    padding: 17px !important;
    border-radius: 25px !important;
    border: 2px solid #fff !important;
    background-color: white !important;
    outline: none;
    color: #060606;
    font-size: 16px;
}

.form-label
{
    color:#fff;
}

input::placeholder {
    color: #060606 !important;
}

label.container {
    display: block;
    position: relative;
    padding-left: 35px;
    margin-bottom: 12px;
    cursor: pointer;
    font-size: 18px;
    user-select: none;
    color: #c8c8e7;
}

/* Custom checkbox/radio */
.checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 25px;
    width: 25px;
    background-color: #eee;
}

/* On mouse-over, add a grey background color */
label.container:hover input ~ .checkmark {
    background-color: #ccc;
}

/* When the checkbox/radio is checked, add a blue background */
label.container input:checked ~ .checkmark {
    background-color: #093356; /* Azul claro */
}

/* Create the checkmark/indicator (hidden when not checked) */
.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

/* Show the checkmark/indicator when checked */
label.container input:checked ~ .checkmark:after {
    display: block;
}

/* Style the checkmark/indicator */
.checkmark:after {
    left: 9px;
    top: 5px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 3px 3px 0;
    transform: rotate(45deg);
}

footer {
    background-color: #0a141d;
    min-height: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: rgb(228, 108, 36);
    box-shadow: 0 0 15px #0a141d;
    text-shadow: 0 0 5px rgba(228, 108, 36, 0.5);
    width: 100%;
}

.hidden {
    display: none;
}

.form-control::-webkit-input-placeholder { /* Chrome/Opera/Safari */
    color: #060606;
}
.form-control::-moz-placeholder { /* Firefox 19+ */
    color: #060606;
}
.form-control:-ms-input-placeholder { /* IE 10+ */
    color: #060606;
}
.form-control::-ms-input-placeholder { /* Microsoft Edge */
    color: #060606;
}

.col-form-label, .form-check-label
{
    color: #fff;
    font-weight: 700;
}
