.main-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    padding: 2rem 0;
}
.welcome-bg {
    position: fixed;
    width: 100%;
    height: 100vh;
    z-index: -1;
}
.welcome-bg-mask {
    position: absolute;
    top: -70px;
    left: 0;
    right: 0;
    bottom: 0;
    height: 100%;
    width: 100%;
    background-color: rgba(var(--bg-mask-color), var(--bg-mask-opacity));
}
.welcome-bg-img {
    position: absolute;
    object-fit: cover;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.welcome-bg-video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%);
  object-fit: cover;
  z-index: -1; 
}

#customer-name {
  text-align: center;
}

.welcome-container {
    background-color: rgba(var(--card-color),0.7);
    backdrop-filter: blur(4px);
    padding: 3rem;
    max-width: 500px;
    box-shadow: var(--shadow-lg);
    border-radius: 4px;
    text-align: center;
    width: 100%;
}
.welcome-screen {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 1rem;
}

.welcome-card {
    position: relative;
}
.welcome-card h2 {
    position: relative;
}
.welcome-card p {
    position: relative;
}

.welcome-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.welcome-form-input {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
}

.welcome-form-input label {
    font-size: 1.2rem;
    font-weight: bold;
}

.welcome-form-input input {
    font-size: 1rem;
    border-radius: 30px;
    padding: 0.7rem 1.2rem;
    border: 2px solid var(--bg-color);
    background-color: rgba(var(--card-color),0.8);
    color: var(--text-colo);
}

.welcome-form-input input:focus {
    outline: none;
    border: 2px solid var(--bg-alter-color);
    background-color: rgba(var(--card-color),0.8);
    color: var(--text-colo);
}
