body {
    margin: 0 auto;
    font-family: Arial;
    background: #eef2f7;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
	width: 100%;
}

.card {
    background: white;
    padding: 40px;
    border-radius: 14px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    width: 500px;
	margin: 0 auto;
}

.contenedor-congreso {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 40px;
}

form {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

input,
select {
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 8px;
}

.precio-box {
    background: #f6f8ff;
    border: 1px solid #dde3ff;
    padding: 20px;
    border-radius: 12px;
}

.linea {
    display: flex;
    justify-content: space-between;
    margin-bottom: 6px;
}

.total {
    display: flex;
    justify-content: space-between;
    font-size: 22px;
    font-weight: 700;
    margin-top: 10px;
    color: #2c5cff;
}

.drop-area {
    border: 2px dashed #cfd6e4;
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    cursor: pointer;
    position: relative;
    background: #fafbff;
}

.drop-area.dragover {
    background: #eef3ff;
    border-color: #2c5cff;
}

.drop-area input {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
	left: 0px;
}

.file-item {
    display: flex;
    justify-content: space-between;
    padding: 8px;
    border: 1px solid #eee;
    border-radius: 6px;
    margin-top: 6px;
}

.remove {
    cursor: pointer;
    color: red;
    border: none;
    background: none;
}

.progress-container {
    height: 6px;
    background: #eee;
    border-radius: 10px;
    overflow: hidden;
    margin-top: 12px;
    display: none;
}

.progress-bar {
    height: 100%;
    width: 0%;
    background: #2c5cff;
}

button {
    background: #2c5cff;
    color: white;
    border: none;
    padding: 14px;
    border-radius: 10px;
    font-size: 16px;
    cursor: pointer;
}

.success-screen {

    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;

    background: rgba(0, 0, 0, 0.5);

    display: flex;
    align-items: center;
    justify-content: center;

    opacity: 0;
    pointer-events: none;

    transition: 0.3s;

}

.success-screen.active {

    opacity: 1;
    pointer-events: auto;

}

.success-card {

    background: white;
    padding: 40px;
    border-radius: 14px;
    text-align: center;

    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);

    max-width: 420px;

}

.success-icon {

    width: 70px;
    height: 70px;

    background: #28c76f;
    color: white;

    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 32px;

    margin: auto;
    margin-bottom: 15px;

}

.success-card h2 {

    margin-bottom: 10px;

}

.success-card p {

    color: #666;
    margin-bottom: 20px;

}

.success-card button {

    background: #2c5cff;
    color: white;

    border: none;
    padding: 12px 20px;

    border-radius: 8px;
    cursor: pointer;

}

.top-bar {

    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;

}

.language-selector {

    display: flex;
    gap: 10px;
    font-size: 22px;

}

.language-selector span {
    cursor: pointer;
    transition: 0.2s;
}

.language-selector span:hover {
    transform: scale(1.15);
}

.logo25 {
    height: 45px;
}

.logo25 {
    height: 45px;
    opacity: 0.9;
    transition: 0.2s;
}

.logo25:hover {
    opacity: 1;
    transform: scale(1.05);
}

.nota {
    font-size: 18px;
    color: #8b2727;
    margin-top: 6px;
    text-align: center;
}

.noches {
    text-align: center;
    line-height: 20px;

}

.first_line_days{

    margin-bottom: 20px;
}

second_line_days{

    margin-bottom: 20px;
}