/* Base form container styling */
.form-container {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 100vh;
    padding: 20px;
    position: relative;
}

/* Overlay for better text readability */
.form-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4); /* Dark overlay */
    z-index: 1;
}

/* Form wrapper */
.form-wrapper {
    position: relative;
    z-index: 2;
    max-width: 500px;
    margin: 0 auto;
    padding-top: 50px;
}

/* Form styling */
.form-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* Specific form backgrounds */
.home {
    background-image: url('/static/images/hometransparent.webp');
}

.login-form {
    background-image: url('/static/images/login-bg.jpg');
}

.register-form {
    background-image: url('/static/images/register-bg.jpg');
}

.profile-form {
    background-image: url('/static/images/profile-bg.jpg');
}

.contact-form {
    background-image: url('/static/images/contact-bg.jpg');
}
