@media (max-width:991px) {
    body.poster {
        margin-top: 60vh;
    }
}

body.poster {
    background-attachment: fixed;
}

.top-5 {
    top: 5px;
}

.form-container {
    background: linear-gradient(135deg, var(--bs-secondary), var(--bs-primary));
    border-radius: 15px;
    padding: 30px;
    width: 350px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5);
    transform: scale(1.05);
    animation: zoomIn 0.5s ease-in-out;
}

.form-container h2 {
    text-align: center;
    font-size: 26px;
    margin-bottom: 20px;
}

.input-container {
    position: relative;
    margin-bottom: 20px;
}

.form-input {
    width: 100%;
    padding: 15px;
    background: transparent;
    border: 2px solid #fff;
    border-radius: 10px;
    color: #fff;
    font-size: 16px;
    outline: none;
    transition: all 0.3s ease;
}

.form-input:focus {
    border-color: #00f260;
    box-shadow: 0 0 10px rgba(0, 255, 255, 0.6);
}

.floating-label {
    position: absolute;
    top: 10px;
    left: 15px;
    font-size: 14px;
    color: #fff;
    transition: 0.3s ease;
}

.form-input:focus + .floating-label,
.form-input:not(:placeholder-shown) + .floating-label {
    top: -15px;
    font-size: 12px;
    color: #fff;
}

.submit-btn {
    width: 100%;
    padding: 15px;
    background-color: #00f260;
    border: none;
    border-radius: 10px;
    color: #fff;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    background-color: #0575e6;
}

@keyframes zoomIn {
    0% {
        transform: scale(0.8);
        opacity: 0;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}