.illustration-image {
    width: 100%;
    max-width: 500px;
}

.image-title {
    font-size: 24px;
}

@media(min-width: 768px) {
    .content-section {
        min-height: 100vh;
    }
}

@media(max-width: 991px) {
    .image-title {
        font-size: 20px;
    }

    .form-title {
        font-size: 24px;
    }
}

@media(max-width: 767px) {
    .illustration-image {
        height: 80px;
    }

    .register-contents {
        flex-direction: column-reverse;
    }

    .register-contents>* {
        width: 100%;
    }
}

.reset-email-message {
    border-radius: 20px;
    opacity: 0; /* Initially hidden */
    transform: translateY(-20px) scale(0.95); /* Move up slightly & shrink */
    animation: slideFadeIn 0.5s ease-out forwards;
}

.reset-email-message p{
    margin-bottom: 0;
}

/* Slide in + Fade */
@keyframes slideFadeIn {
    0% {
        opacity: 0;
        transform: translateY(-20px) scale(0.95);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}
