﻿.title {
    font-size: 25px;
    font-weight: bold;
    color: #002554
}

.subtitle {
    font-size: 16px;
    font-weight: bold;
    padding-top: 10px;
    color: #002554
}

.containter-info {
    border-radius: 10px;
    margin-bottom: 10px;
    padding: 10px;
    border: 1px solid rgba(255, 103, 31, 0.4) !important
}


.btn-send {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 12px 24px;
    gap: 8px;
    width: 250px;
    height: 48px;
    border: none;
    background: #2F469C;
    box-shadow: 0px 1px 2px rgba(16, 24, 40, 0.05);
    border-radius: 8px;
    font-style: normal;
    font-weight: 500;
    font-size: 14px;
    line-height: 21px;
    color: #FEFEFE;
    cursor: pointer !important;
}

.btn-return {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 12px 24px;
    gap: 8px;
    width: 150px;
    height: 48px;
    border: none;
    background: #ff671f;
    box-shadow: 0px 1px 2px rgba(16, 24, 40, 0.05);
    border-radius: 8px;
    font-style: normal;
    font-weight: 500;
    font-size: 14px;
    line-height: 21px;
    color: #FEFEFE;
    cursor: pointer !important;
}

.btn-new {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 12px 24px;
    gap: 8px;
    width: 250px;
    height: 48px;
    border: none;
    background: #ff671f;
    box-shadow: 0px 1px 2px rgba(16, 24, 40, 0.05);
    border-radius: 8px;
    font-style: normal;
    font-weight: 500;
    font-size: 14px;
    line-height: 21px;
    color: #FEFEFE;
    cursor: pointer !important;
}

.btn-download {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 12px 24px;
    gap: 8px;
    width: 250px;
    height: 48px;
    border: none;
    background: #2F469C;
    box-shadow: 0px 1px 2px rgba(16, 24, 40, 0.05);
    border-radius: 8px;
    font-style: normal;
    font-weight: 500;
    font-size: 14px;
    line-height: 21px;
    color: #FEFEFE;
    cursor: pointer !important;
}

.btn-new, .btn-download, .btn-send, .btn-return:hover {
    opacity: 0.9;
    color: white !important
}

.fake-link {
    color: #009D9C;
    cursor: pointer;
    font-weight: 500;
}

    .fake-link:hover {
        color: #2F469C;
        text-decoration: underline;
    }


.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.7);
    display: none; /* oculto por defecto */
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.spinner {
    width: 40px;
    height: 40px;
    border: 4px solid #ccc;
    border-top: 4px solid #ff671f; /* color principal */
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}


::placeholder {
    color: #2F469C !important;
    opacity: 1 !important;
}

/* Chrome, Safari, Edge */
::-webkit-input-placeholder {
    color: #2F469C !important;
    opacity: 1 !important;
}

/* Firefox */
::-moz-placeholder {
    color: #2F469C !important;
    opacity: 1 !important;
}

/* Internet Explorer */
.input:-ms-input-placeholder {
    color: #2F469C !important;
    opacity: 1 !important;
}


