
/* Reset general */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f0f2f5;
    color: #333;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

.main-container {
    width: 100%;
    max-width: 600px;
    padding: 20px;
	text-align: center;
}

.logo-img {
    max-width: 100%;
    height: auto;
    margin-bottom: 20px;
}

/* Tarjeta contenedora */
.card {
    background: #ffffff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);    
}



h1 {
    font-size: 1.8rem;
    color: #0d3d6a;
    margin-bottom: 5px;
    text-transform: uppercase;
}

.subtitle {
    font-size: 20px;
    color: #666;
    margin-bottom: 30px;
}

/* Formulario */
.download-form {
    display: flex;
    flex-direction: column;
    align-items: center; /* Centra los hijos horizontalmente */
    gap: 10px;
}

/* CAMPO DE TEXTO AL 50% */
input[type="text"] {
    width: 50%; /* Ancho a la mitad */
    padding: 12px;
    border: 2px solid #ccc;
    border-radius: 8px;
    font-size: 16px;
    text-align: center;
    transition: border-color 0.3s ease;
}

input[type="text"]:focus {
    outline: none;
    border-color: #1d83e2;
    background-color: #fff;
}

/* BOTÓN */
.btn-submit {
    width: auto;
    padding: 12px 40px;
    background-color: #1d83e2;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s ease;
}

.btn-submit:hover {
    background-color: #0d3d6a;
}

/* Pie de página */
.footer-text {
    margin-top: 25px;
    font-size: 12px;
    color: #999;
}