﻿/* ===== Background ===== */
.background {
    background-image: url('/PipelineNocExt/images/background_img.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

/* Dark overlay */
.overlay {
    background-color: rgba(0, 0, 0, 0.5);
    position: absolute;
    inset: 0;
}

/* ===== Form Container ===== */
.form-container {
    background: rgba(255, 255, 255, 0.95);
    padding: 24px 28px;
    border-radius: 12px;
    width: 100%;
    max-width: 550px;
    position: relative;
    z-index: 1;
}
.margin-button {
    margin-bottom: 40px;
}
/* Step containers */
#step2, #step3 {
    display: none;
}