﻿body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
}

h1 {
    font-size: 30px !important;
    margin-top: 0 !important;
    margin-bottom: 0 !important;
    text-align: left;
}

h3 {
    font-size: 2rem !important;
    font-weight: 600 !important;
    color: #144a86 !important;
}

h4 {
    font-size: 1.7rem !important;
    color: white !important;
    padding: 7px 18px;
    border: none;
    border-radius: 20px;
    background-color: #03a3e2;
    display: inline-block;
}

header {
    display: flex !important;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background: linear-gradient(to left, #0c4988, #03a3e2);
    color: white;
}

.header-left, .header-right {
    display: flex;
    align-items: center;
}

.header-left img, .header-right img {
    margin-right: 10px;
}

.container {
    background-color: white;
    margin: 20px;
    padding: 20px;
    border-radius: 10px;
}

.row {
    display: flex;
    margin-bottom: 20px;
}

.text-content {
    flex: 70%;
    padding-right: 20px;
}

.form-content {
    flex: 30%;
    border: 1px solid #03a3e2;
    border-radius: 20px;
    padding: 10px 20px 20px 20px;
}

.form-group {
    margin-bottom: 15px;
}


.form-control {
	margin: 15px 0;
	color: #154c87 !important;
}

label {
    display: block;
    margin-bottom: 5px;
    color: #333;
}

input[type="text"],
input[type="email"],
input[type="date"],
select.custom-select {
    width: 100%;
    border: 1px solid #b9c1d6;
    border-radius: 20px;
    box-sizing: border-box;
}

.custom-checkbox label {
	margin-left: 7px;
    margin-bottom: 15px;
    color: #154c87;
}

.etiqueta {
	margin-top: 15px;
    display: block;
    text-align: center;
    font-size: 1.2rem;
    color: #154c87;
}

.custom-buttons {
	display: flex;
    justify-content: center;
}

input[type="submit"] {
    padding: 5px 15px;
    border: none;
    border-radius: 15px;
    background-color: #03a3e2;
    color: white;
    font-size: 16px;
    transition: background-color 0.3s ease;
}

input[type="submit"]:hover {
    background-color: #027bb5;
}

ul {
    list-style: none;
    padding: 0;
    margin-left: 20px;
    margin-top: 10px;
}

li {
    margin-bottom: 5px;
    color: #154c87;
    font-size: 1.6rem;
    padding: 5px 0;
}

li i {
	color: #2aa0d7;
    margin-right: 10px;
}


.result-content {
	display: flex;
    justify-content: center;
    width: 100%;
    margin-bottom: 100px;
    flex-direction: column;
    align-items: center;
}
.result-content .alerta {
    margin-top: 10px;
    font-size: 1.6rem;
}
.result-content h4 {
	background-color: #144a86;
}

footer {
    background-color: #119fc5;
    color: white;
    text-align: center;
    padding: 10px 0;
    border-top: 6px solid #0b4d8b;
    position: fixed;
    width: 100%;
    bottom: 0;
    font-size: 1.2rem;
}

/* Responsive Design */
@media (max-width: 768px) {
	header {
        flex-direction: column;
        text-align: center;
    }
}
@media (max-width: 768px) {
    header {
        flex-direction: column;
        text-align: center;
    }

    .header-left, .header-right {
        justify-content: center;
    }

    .row {
        flex-direction: column;
    }
    
    .container {
        margin: 20px !important;
        padding: 10px;
    }

    .text-content, .form-content {
        flex: 100%;
        padding: 10px 0;
    }

    .form-content {
        margin-top: 20px;
        padding: 20px;
    }

    footer {
        font-size: 1rem;
    }
}

@media (max-width: 480px) 
{
	.header-left img, .header-right img {
		margin-right: 10px;
		height: 50px;
    }
	h1 {
		font-size: 20px !important;
	}
    h3 {
        font-size: 1.5rem !important;
    }

    h4 {
        font-size: 1.5rem !important;
        padding: 5px 10px;
    }

    input[type="submit"] {
        font-size: 14px;
    }

    .container {
        margin: 20px !important;
        padding: 10px;
    }

    .form-content {
        padding: 10px;
    }
}