body {
    background-image: url('../img/fondo.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed; 
    min-height: 97vh;
    width: 100vw;
    overflow-x: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.bg-particles {
    position: fixed !important;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    pointer-events: none;
    z-index: -1 !important;
    overflow: hidden;
}

.particle {
    position: absolute !important;
    border-radius: 50%;
    opacity: 1 !important;
    animation: float-particle 15s ease-in-out infinite;
    box-shadow: 0 0 30px rgba(255, 255, 255, 0.8), 
                0 0 60px rgba(255, 255, 255, 0.4);
    display: block !important;
    visibility: visible !important;
}

.particle:nth-child(1) {
    width: 15px; height: 15px; top: 15%; left: 10%; animation-delay: 0s;
    background: radial-gradient(circle, rgba(61, 177, 3, 1), rgba(255, 255, 255, 0.8));
}
.particle:nth-child(2) {
    width: 20px; height: 20px; top: 70%; left: 85%; animation-delay: 3s;
    background: radial-gradient(circle, rgba(80, 229, 249, 1), rgba(255, 255, 255, 0.8));
}
.particle:nth-child(3) {
    width: 12px; height: 12px; top: 90%; left: 15%; animation-delay: 6s;
    background: radial-gradient(circle, rgba(255, 255, 255, 1), rgba(61, 177, 3, 0.8));
}
.particle:nth-child(4) {
    width: 18px; height: 18px; top: 25%; left: 75%; animation-delay: 9s;
    background: radial-gradient(circle, rgba(80, 229, 249, 1), rgba(61, 177, 3, 0.8));
}
.particle:nth-child(5) {
    width: 14px; height: 14px; top: 60%; left: 45%; animation-delay: 12s;
    background: radial-gradient(circle, rgba(255, 255, 255, 1), rgba(80, 229, 249, 0.8));
}
.particle:nth-child(6) {
    width: 16px; height: 16px; top: 35%; left: 20%; animation-delay: 15s;
    background: radial-gradient(circle, rgba(61, 177, 3, 1), rgba(255, 255, 255, 0.8));
}
.particle:nth-child(7) {
    width: 10px; height: 10px; top: 50%; left: 60%; animation-delay: 2s;
    background: radial-gradient(circle, rgba(80, 229, 249, 1), rgba(255, 255, 255, 0.8));
}
.particle:nth-child(8) {
    width: 22px; height: 22px; top: 80%; left: 70%; animation-delay: 5s;
    background: radial-gradient(circle, rgba(255, 255, 255, 1), rgba(61, 177, 3, 0.9));
}
.particle:nth-child(9) {
    width: 17px; height: 17px; top: 10%; left: 50%; animation-delay: 8s;
    background: radial-gradient(circle, rgba(61, 177, 3, 1), rgba(80, 229, 249, 0.9));
}
.particle:nth-child(10) {
    width: 13px; height: 13px; top: 40%; left: 90%; animation-delay: 11s;
    background: radial-gradient(circle, rgba(80, 229, 249, 1), rgba(255, 255, 255, 0.8));
}

@keyframes float-particle {
    0%, 100% {
        transform: translateY(0px) translateX(0px) scale(1) rotate(0deg);
        opacity: 0.9;
    }
    25% {
        transform: translateY(-50px) translateX(40px) scale(1.3) rotate(90deg);
        opacity: 1;
    }
    50% {
        transform: translateY(-30px) translateX(-35px) scale(0.7) rotate(180deg);
        opacity: 0.8;
    }
    75% {
        transform: translateY(40px) translateX(50px) scale(1.2) rotate(270deg);
        opacity: 1;
    }
}

.mensajes-container {
    position: fixed;
    top: 16%;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    max-width: 500px;
    z-index: 9999;
    text-align: center;
}

.alert {
    padding: 15px 20px;
    border-radius: 5px;
    margin-bottom: 10px;
    font-weight: 500;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    animation: fadeIn 0.5s ease-in-out;
    position: relative;
    padding-right: 30px;
}

.alert-success {
    background-color: #dff0d8;
    border: 1px solid #d6e9c6;
    color: #3c763d;
}

.alert-danger {
    background-color: #f2dede;
    border: 1px solid #ebccd1;
    color: #a94442;
}

.alert-info {
    background-color: #d9edf7;
    border: 1px solid #bce8f1;
    color: black;
}

.close-btn {
    position: absolute;
    top: 2px;
    right: 10px;
    background: none;
    border: none;
    font-size: 20px;
    cursor: pointer;
    color: inherit;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.form-group {
    position: relative;
}

.container.active .error-container,
.container.active .error-correo,
.container.active .error-contra {
    left: 102%;
    right: auto;
    font-family: 'Work Sans', sans-serif;
}

.container.active .error-contrase,
.container.active .error-cedula,
.container.active .error-rol {
    right: auto;
    left: 102%; 
    font-family: 'Work Sans', sans-serif;
}

.container.active .error-container::after,
.container.active .error-correo::after,
.container.active .error-contra::after,
.container.active .error-contrase::after,
.container.active .error-cedula::after,
.container.active .error-rol::after {
    content: '';
    position: absolute;
    left: -10px;
    right: auto;
    top: 50%;
    transform: translateY(-50%);
    border-width: 5px 10px 5px 0px;
    border-style: solid;
    border-color: transparent #f8d7da transparent transparent;
}

.container:not(.active) .error-container,
.container:not(.active) .error-correo,
.container:not(.active) .error-contra {
    right: 102%; 
    left: auto;
    font-family: 'Work Sans', sans-serif;
}

.container:not(.active) .error-contrase,
.container:not(.active) .error-cedula,
.container:not(.active) .error-rol {
    right: 102%; 
    left: auto;
    font-family: 'Work Sans', sans-serif;
}

.container:not(.active) .error-container::after,
.container:not(.active) .error-correo::after,
.container:not(.active) .error-contra::after,
.container:not(.active) .error-contrase::after,
.container:not(.active) .error-cedula::after,
.container:not(.active) .error-rol::after {
    content: '';
    position: absolute;
    right: -10px;
    left: auto;
    top: 50%;
    transform: translateY(-50%);
    border-width: 5px 0 5px 10px;
    border-style: solid;
    border-color: transparent transparent transparent #f8d7da;
}

.error-container {
    color: #721c24;
    background-color: #f8d7da;
    border: 1px solid #f5c6cb;
    border-radius: 5px;
    font-size: 12px;
    padding: 4px 8px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 150px;
    z-index: 1000;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Work Sans', sans-serif;
    font-weight: 500;
}

.error-correo, .error-contra {
    color: #721c24;
    background-color: #f8d7da;
    border: 1px solid #f5c6cb;
    border-radius: 5px;
    font-size: 12px;
    padding: 4px 8px;
    position: absolute;
    top: 37%;
    transform: translateY(-50%);
    width: 150px;
    z-index: 1000;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Work Sans', sans-serif;
    font-weight: 50;
}

.error-container ul, .error-correo ul, .error-contra ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.error-container li, .error-correo li, .error-contra li {
    padding: 0;
    margin: 0;
}

.error-contrase {
    color: #721c24;
    background-color: #f8d7da;
    border: 1px solid #f5c6cb;
    border-radius: 5px;
    font-size: 12px;
    padding: 4px 8px;
    position: absolute;
    top: 37%;
    transform: translateY(-50%);
    width: 150px;
    z-index: 1000;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Work Sans', sans-serif;
    font-weight: 500;
}

.error-cedula {
    color: #721c24;
    background-color: #f8d7da;
    border: 1px solid #f5c6cb;
    border-radius: 5px;
    font-size: 12px;
    padding: 4px 8px;
    position: absolute;
    top: 48%;
    transform: translateY(-50%);
    width: 150px;
    z-index: 1000;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Work Sans', sans-serif;
    font-weight: 500;
}

.error-rol {
    color: #721c24;
    background-color: #f8d7da;
    border: 1px solid #f5c6cb;
    border-radius: 5px;
    font-size: 12px;
    padding: 4px 8px;
    position: absolute;
    top: 48%;
    transform: translateY(-50%);
    width: 150px;
    z-index: 1000;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Work Sans', sans-serif;
    font-weight: 500;
}

.container:hover {
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.35),
                0 0 50px rgba(0, 212, 255, 0.25);
}

.container {
    width: 65vw;
    height: 90vh;
    background: #fff;
    border-radius: 20px;
    display: flex;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3),
                0 0 40px rgba(0, 212, 255, 0.15);
    position: relative;
    z-index: 1;
     transition: transform 180ms cubic-bezier(0.4, 0, 0.2, 1), box-shadow 180ms ease, border-radius 180ms ease;
}

.container:hover {
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.35),
                0 0 50px rgba(0, 212, 255, 0.25);
}

.back-arrow {
    position: fixed; 
    top: 6%;
    left: calc((100vw - 65vw) / 2 + 20px); 
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    text-decoration: none;
    border: none;
    box-shadow: none;
    outline: none;
    transition: all 0.3s ease;
    z-index: 1000; 
    backdrop-filter: blur(5px);
}

.back-arrow:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateX(-5px) scale(1.1);
}

.back-arrow img {
    height: 64%;
    transition: color 0.3s ease;
    filter: brightness(0) saturate(100%) invert(38%) sepia(98%) saturate(1547%) hue-rotate(177deg) brightness(95%) contrast(101%);
}

.blue-panel {
    width: 50%;
    background: linear-gradient(135deg, #00304D 0%, #0070B3 60%, #50E5F9 100%);
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    border-radius: 0 80% 0 0;
    padding: 20px;
    position: relative;
    overflow: hidden;
    transition: border-radius 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.blue-panel::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: rotate-gradient 20s linear infinite;
    pointer-events: none;
}

.blue-panel::after {
    content: '';
    position: absolute;
    width: 20%;
    height: 20%;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(80, 229, 249, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(61, 177, 3, 0.12) 0%, transparent 50%),
        radial-gradient(circle at 40% 80%, rgba(255, 255, 255, 0.08) 0%, transparent 40%);
    animation: float-bg 10s ease-in-out infinite;
    pointer-events: none;
}

@keyframes rotate-gradient {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes float-bg {
    0%, 100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.6;
    }
    50% {
        transform: translate(20px, -20px) scale(1.1);
        opacity: 0.8;
    }
}

.blue-panel .logo-sena {
    width: 10vw;
    filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.6))
            drop-shadow(0 0 40px rgba(80, 229, 249, 0.4))
            brightness(1.2);
    transition: all 0.4s ease;
    z-index: 2;
    animation: fadeContent 0.6s ease-in-out 0s backwards, 
               float-logo 3s ease-in-out 0.6s infinite;
}

@keyframes float-logo {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-15px);
    }
}

.blue-panel .logo-sena:hover {
    filter: drop-shadow(0 0 30px rgba(255, 255, 255, 0.8))
            drop-shadow(0 0 60px rgba(80, 229, 249, 0.6))
            brightness(1.4);
    transform: scale(1.1);
}

.blue-panel h2 {
    margin: 10px 0;
    font-family: 'Work Sans', sans-serif;
    font-weight: 700;
    font-size: 1.7rem;
    z-index: 2;
    animation: fadeContent 0.6s ease-in-out 0.3s backwards,
               pulse-text 2s ease-in-out 0.9s infinite; 
}

@keyframes pulse-text {
    0%, 100% {
        text-shadow: 0 0 20px rgba(255, 255, 255, 0.3),
                     0 0 40px rgba(80, 229, 249, 0.2);
    }
    50% {
        text-shadow: 0 0 30px rgba(255, 255, 255, 0.5),
                     0 0 60px rgba(80, 229, 249, 0.4);
    }
}

.blue-panel p {
    font-size: 14px;
    margin: 5px 0 20px 0;
    text-align: center;
    font-family: 'Work Sans', sans-serif;
    opacity: 0.95;
    z-index: 2;
    animation: fadeContent 0.6s ease-in-out 0.5s backwards;
}

.blue-panel button {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: #fff;
    padding: 12px 30px;
    border-radius: 25px;
    cursor: pointer;
    font-weight: bold;
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: 'Work Sans', sans-serif;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2),
                0 0 20px rgba(255, 255, 255, 0.1);
    z-index: 2;
    animation: fadeContent 0.6s ease-in-out 0.7s backwards;
}

.blue-panel button:hover {
    background: linear-gradient(135deg, #0070B3 0%, #50E5F9 100%); 
    transform: translateY(-3px) scale(1.02); 
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.3),
        0 12px 30px rgba(0, 112, 179, 0.4),
        0 0 40px rgba(80, 229, 249, 0.4);
}

.header-content {
    display: flex;
    flex-direction: column; 
    justify-content: center;
    align-items: center;
    gap: 15px; 
    margin-bottom: 5px;
}

.header-content:hover{
    filter: contrast(1) 
            brightness(1.08) 
            saturate(1.2)
            drop-shadow(0 0 30px rgba(0, 212, 255, 1))
            drop-shadow(0 0 50px rgba(79, 195, 247, 0.8))
            drop-shadow(0 4px 12px rgba(0, 0, 0, 0.2));
    transform: scale(1.12) translateY(-3px);
}

.header-gc-logo {
    width: clamp(185px, 15%, 195px);
    height: auto;
    filter: contrast(0.90)
            brightness(1.01)
            saturate(0.90)
            drop-shadow(0 0 12px rgba(0, 212, 255, 0.45))
            drop-shadow(0 0 22px rgba(79, 195, 247, 0.35))
            drop-shadow(0 2px 6px rgba(0, 0, 0, 0.18));
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    margin: 0;
    animation: fadeContent 0.6s ease-in-out 0s backwards;
}

.header-content h2 {
    color: #00304D;
    text-align: center;
    font-weight: 900;
    font-size: clamp(0.95rem, 5vw, 1.3rem);
    letter-spacing: 1.5px;
    text-shadow: 0 2px 10px rgba(0, 48, 77, 0.15),
                 0 0 25px rgba(0, 112, 179, 0.1);
    background: linear-gradient(135deg, #00304D 0%, #0070B3 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0;
    animation: fadeContent 0.6s ease-in-out 0.4s backwards;
}

.form-container {
    width: 45%;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    opacity: 1;
    transition: opacity 0.2s ease-in-out; 
}

.form-container h2 {
    color: #00304D;
    text-align: center;
    font-weight: 900;
    font-size: clamp(0.95rem, 5vw, 1.3rem);
    letter-spacing: 1.5px;
    text-shadow: 0 2px 10px rgba(0, 48, 77, 0.15),
                 0 0 25px rgba(0, 112, 179, 0.1);
    background: linear-gradient(135deg, #00304D 0%, #0070B3 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fadeContent 0.6s ease-in-out 0.4s backwards;
}

.input,
.select {
    width: 100%;
    padding: 12px 15px;
    margin: 6px 0;
    border: 2px solid #e0e0e0;
    color: #333;
    border-radius: 25px;
    box-sizing: border-box;
    height: 45px;
    font-size: 14px;
    font-weight: 500;
    background-color: #f8f9fa;
    transition: all 0.3s ease;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    animation: fadeContent 0.6s ease-in-out 0.6s backwards;
}

.input::placeholder {
    color: #666;
    font-weight: 500;
    opacity: 1;
}

.input:focus,
.select:focus {
    outline: none;
    border-color: #0070B3;
    background-color: #fff;
    box-shadow: 0 0 0 3px rgba(0, 112, 179, 0.1),
                0 5px 15px rgba(0, 112, 179, 0.15);
    transform: translateY(-2px);
}

.form-text {
    text-align: center;
    font-size: 14px;
    font-family: 'Work Sans', sans-serif;
    animation: fadeContent 0.6s ease-in-out 0.7s backwards;
}

.select_container,
.select-container {
    position: relative;
    width: 100%;
    animation: fadeContent 0.6s ease-in-out 0.6s backwards;
}

.select_container::after,
.select-container::after {
    content: "▼";
    position: absolute;
    top: 50%;
    right: 1em;
    transform: translateY(-50%);
    pointer-events: none;
    color: #0070B3;
    font-size: 1em;
    line-height: 1;
    transition: all 0.3s ease;
}

.select:focus + .select_container::after,
.select:focus + .select-container::after {
    color: #00304D;
}

.form-group {
    position: relative;
    animation: fadeContent 0.6s ease-in-out 0.6s backwards;
}

.form-container .btn {
    margin-top: 3%;
    background: linear-gradient(135deg, #00304D 0%, #0070B3 100%);
    color: #fff;
    border: none;
    padding: 13px 20px;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 800;
    font-size: 1rem;
    width: 100%;
    justify-content: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 6px 20px rgba(0, 48, 77, 0.3),
                0 0 20px rgba(0, 112, 179, 0.2);
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
    animation: fadeContent 0.6s ease-in-out 0.8s backwards;
}

.form-container .btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.form-container .btn:hover::before {
    width: 300px;
    height: 300px;
}

.form-container .btn:hover {
    background: linear-gradient(135deg, #0070B3 0%, #50E5F9 100%);
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 30px rgba(0, 112, 179, 0.4),
                0 0 40px rgba(80, 229, 249, 0.4);
}

.form-container .btn:active {
    transform: translateY(-1px) scale(0.98);
}

.password-field-container {
    position: relative;
    width: 100%;
    animation: fadeContent 0.6s ease-in-out 0.6s backwards;
}

#olvido {
    display: block;
    text-align: left;
    margin-top: 1%;
    margin-left: 2%;
    font-size: 14px;
    color: #0070B3;
    text-decoration: none;
    font-family: 'Work Sans', sans-serif;
    font-weight: 600;
    transition: all 0.3s ease;
    animation: fadeContent 0.6s ease-in-out 0.7s backwards;
}

#olvido:hover {
    color: #00304D;
    text-decoration: underline;
    transform: translateX(5px);
}

.password-field-container .input {
    width: 100%;
    padding: 12px 45px 12px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 25px;
    font-size: 14px;
}

.password-field-container .password-toggle-icon {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    color: #0070B3;
    font-size: 16px;
    transition: all 0.3s ease;
}

.password-field-container .password-toggle-icon:hover {
    color: #00304D;
    transform: translateY(-50%) scale(1.2);
}

.container.active .blue-panel {
    order: 2;
    border-radius: 80% 0 0 0;
}

.container.active .form-container {
    order: 1;
}

@keyframes fadeContent {
    0% {
        opacity: 0;
        transform: translateY(10px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    inset: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.9); 
    animation: fadeIn 0.3s ease-in-out;
}

.modal-visible {
    display: block !important;
    background-color: rgba(0, 0, 0, 0.8) !important; 
}

.modal-content {
    background-color: #fff;
    margin: 10% auto;
    width: 80%;
    max-width: 450px;
    border-radius: 20px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
    animation: slideDown 0.4s ease-out;
    overflow: hidden;
}

.modal-perfil-cerrar {
    position: absolute;
    top: 10px; 
    right: 10px; 
    background: rgba(255, 255, 255, 0.95);
    border: 1.5px solid #ccc;
    border-radius: 50%;
    width: 28px; 
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1rem; 
    color: #555;
    transition: all 0.3s ease;
    z-index: 10;
    text-decoration: none;
}

.modal-perfil-cerrar:hover {
    background: #f44336;
    color: white;
    border-color: #f44336;
    transform: rotate(90deg);
}

.modal-header {
    padding: 15px 20px;
    position: relative;
    border-radius: 20px 20px 0 0;
}

.modal-header h3 {
    margin: 0;
    font-size: 20px;
    font-family: 'BabelSans', sans-serif;
    text-align: center;
    color: #000;
}

.close {
    position: absolute;
    top: 5%;
    right: 2%;
    font-size: 28px;
    font-weight: bold;
    color: #000;
    cursor: pointer;
    transition: color 0.2s;
}

.close:hover {
    background-color: #f0f0f0;
    color: #000;
    transform: rotate(90deg);
}

.modal-body {
    padding: 20px;
    background-color: #fff;
}

.modal-body p {
    margin-bottom: 20px;
    font-size: 14px;
    text-align: center;
    font-family: 'BabelSans', sans-serif;
    color: #333;
}

.modal-body .form-control {
    width: 100%;
    max-width: 90%;
    padding: 10px 15px;
    border: 1px solid #00000070;
    border-radius: 7px;
    height: auto;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    font-family: 'BabelSans', sans-serif;
    margin: 0 auto 15px auto;
    display: block;
}

.modal-body .error-container {
    color: #721c24;
    background-color: #f8d7da;
    border: 1px solid #f5c6cb;
    border-radius: 5px;
    font-size: 14px;
    padding: 8px;
    margin-top: 5px;
    text-align: center;
}

.modal-footer {
    text-align: center;
    padding: 15px;
    background-color: #fff;
    border-radius: 0 0 20px 20px;
}

.modal-footer .submit-btn {
    background-color: #00304D;
    color: #fff;
    border: none;
    border-radius: 20px;
    padding: 10px;
    font-family: 'BabelSans', sans-serif;
    font-weight: bold;
    cursor: pointer;
    width: 50%;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    transition: all 0.3s;
}

.modal-footer .submit-btn:hover {
    background-color: #0091eb;
    color: #000;
    transform: translateY(-2px);
}

@keyframes slideDown {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to   { opacity: 1; }
}