body {
    background: linear-gradient(to right, #000000, #333333);
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    height: 70vh;
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 20px;
}

.logo {
    width: 100px;
    position: absolute;
    top: -50px; /* Ajusta la posición del logo */
    left: 50%;
    transform: translateX(-50%);
	filter: drop-shadow(0px 0px 10px rgba(255, 255, 255, 0.8));
}

.container {
    background: #0280c9;
    background: -moz-linear-gradient(0deg, rgba(2, 128, 201, 1) 0%, rgba(0, 154, 243, 1) 100%);
    background: -webkit-linear-gradient(0deg, rgba(2, 128, 201, 1) 0%, rgba(0, 154, 243, 1) 100%);
    background: linear-gradient(0deg, rgba(2, 128, 201, 1) 0%, rgba(0, 154, 243, 1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#0280c9",endColorstr="#009af3",GradientType=1);
	top: 50px;
    padding: 40px;
    padding-top: 70px; /* Ajuste para el logo */
    border-radius: 10px;
    text-align: center;
    box-shadow: 0px 0px 10px rgba(255, 255, 255, 0.2);
    max-width: 400px;
    width: 100%;
    position: relative;
	margin-bottom: 20px; /* Espaciado para evitar cortes */
}

input, button {
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    border-radius: 5px;
    border: none;
    font-size: 16px;
}

input{
	max-width: 380px;
}

button{
	max-width: 250px;
}

button {
    background: white;
    color: #0280c9;
    font-weight: bold;
    cursor: pointer;
}

.resultado {
    background: #ffffff;
    color: black;
    padding: 20px;
    border-radius: 10px;
    margin-top: 50px;
    max-width: 400px;
    width: 100%;
    text-align: center;
}

.error {
    color: red;
}

.desglose-ctt {
    background: rgb(223, 0, 36);
    color: white;
    padding: 10px;
    border-radius: 5px;
    margin-top: 10px;
}

.desglose-ctt h4 {
    margin: 0 0 10px;
    font-size: 16px;
    text-align: center;
}

.desglose-ctt p {
    margin: 5px 0;
    font-size: 14px;
}

/* Ajustes específicos para móviles */
@media (max-width: 768px) {
    .container, .resultado {
        width: 90%;
        padding: 40px;
        padding-top: 70px;
		max-width: 360px;
    }

    input {
        font-size: 16px;
        padding: 12px;
		max-width: 300px;
    }
	
	button {
		font-size: 16px;
        padding: 12px;
		max-width: 200px;
	}
}