.form.container {
    box-shadow: 0 0 5px 0 #0000003d;
    padding: 30px;
    border-radius: 10px;
}
.form.container h2 {
    font-size: 28px;
    text-align: center;
    margin: 25px 0;
    color: #3e65a8;
}
button.mt-4 {
    background-color: #aa1628;
    width: 11%;
    border: unset;
    padding: 10px;
    border-radius: 10px;
    color: white;
    font-size: 16px;
}
.form{
margin-top: 50px;
}
#name-error{
    color: red;
    display: none;
    font-size: 12px;
}
div#flash-message {
    bottom:0 !important;
    top: unset !important;
    right: 0 !important;
    width: 100% !important;
    position: relative !important;
    left: 0 !important;
}
.form.container{
    position: relative;
}

.flash-modal {
    position: fixed;
    inset: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
    z-index: 9999;
}

.flash-modal.show {
    opacity: 1;
    pointer-events: auto;
}

.flash-modal-bg-blur {
    position: absolute;
    inset: 0;
    backdrop-filter: blur(8px);
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.flash-modal-content {
    position: relative;
    z-index: 2;
    background: rgba(255, 255, 255, 0.12);
    border-radius: 20px;
    padding: 30px 40px;
    text-align: center;
    backdrop-filter: blur(20px);
    box-shadow: 0 0 30px rgba(255, 255, 255, 0.2),
    0 0 80px rgba(0, 255, 255, 0.2);
    animation: fadeInScale 0.6s ease forwards;
    width: 350px;
    color: #fff;
}

.flash-modal.success .flash-modal-content {
    border: 2px solid #00ffb3;
    box-shadow: 0 0 20px #00ffb360, 0 0 60px #00ffc260;
}

.flash-modal.error .flash-modal-content {
    border: 2px solid #ff4d6d;
    box-shadow: 0 0 20px #ff4d6d60, 0 0 60px #ff4d6d80;
}

.animated-icon {
    position: relative;
    width: 100px;
    height: 100px;
    margin: 0 auto 20px;
}

.checkmark-svg {
    width: 100px;
    height: 100px;
    display: block;
    margin: 0 auto;
}

.checkmark-circle {
    stroke: #00ffb360;
    stroke-width: 4;
    stroke-dasharray: 157;
    stroke-dashoffset: 157;
    animation: draw-circle 0.6s ease forwards;
}

.checkmark-check {
    stroke: #00ffb3;
    stroke-width: 5;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-dasharray: 48;
    stroke-dashoffset: 48;
    animation: draw-check 0.6s 0.4s ease forwards;
}

@keyframes draw-circle {
    to {
        stroke-dashoffset: 0;
    }
}

@keyframes draw-check {
    to {
        stroke-dashoffset: 0;
    }
}