body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: url('../images/Signup_1st.png') no-repeat center center/cover;
    background-size: cover;
    background-attachment: fixed;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    transition: background-image 0.5s ease-in-out; /* Smooth background change */
}

/* Add the color overlay with opacity */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #202454;
    opacity: 0.8; /* 80% opacity */
    z-index: -1; /* Ensure it stays behind the sign-up container */
}

.sign-up-container {
    background-color: white;
    width: 40.69vw;
    height: 90vh;
    max-width: 450px;
    max-height: 560px;
    min-width: 300px;
    min-height: 400px;
    position: absolute;
    top: 8.11%;
    left: 60%;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    text-align: left;
}

/* "NEVETA" and additional texts */
.header-text {
    position: absolute;
    top: 60px;
    left: 39px;
    color: white;
    margin-bottom: 30px;
}

.header-text h1 {
    top: 60px;
    left: 39px;
    font-size: 70px;
    font-weight: bold;
    margin: 0;
    margin-bottom: 20px;
}

.header-text p {
    top: 60px;
    left: 39px;
    font-size: 24px;
    margin: 0;
    margin-bottom: 20px;
    word-wrap: break-word; /* Allow text to wrap */
    max-width: calc(750px - 39px); /* Break the text after 750px minus the left margin */
    overflow-wrap: break-word; /* Ensure the word breaks if necessary */
}

.sign-up-container h2 {
    font-size: 32px;
    margin-top: 0;
    margin-bottom: 20px;
}

.progress-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.progress-line {
    width: 48%;
    height: 2px;
    background-color: lightgray;
}

.progress-line.active {
    background-color: black;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 14px;
    margin-bottom: 5px;
}

.form-control {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
}

.form-control::placeholder {
    color: #aaa;
}

/* Ensure the dropdown is scrollable and has a set height */
.form-control.dropdown {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
    max-height: 200px; /* Set a height limit for the dropdown */
    overflow-y: auto; /* Enable vertical scrolling */
}


.checkbox-container {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 10px;
}

.checkbox-label {
    font-size: 14px;
}

.btn {
    padding: 12px 30px;
    background: #444;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

.btn:hover {
    background: #333;
}

.btn-next {
    margin-top: 20px;
}

.btn-next:disabled {
    background-color: lightgray;
    cursor: not-allowed;
}

.btn-signin {
    font-weight: bold;
    cursor: pointer;
}

.btn-house-signin {
    margin-top: 70%;
    font-weight: bold;
    cursor: pointer;
}

.hidden {
    display: none;
}

.dropdown {
    width: 100%;
}

.gap {
    margin-top: 20px;
}

.align-left {
    text-align: left;
}

.btn-small {
    width: auto;
    padding: 10px 20px;
}

.text-small {
    margin-top: 20px;
}

.logo-container {
    position: absolute;
    top: 25%;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
}

.logo {
    width: 8.47vw;
    height: 4.44vh;
}

.reset-container {
    background-color: white;
    width: 40.69vw;
    height: 20vh;
    max-width: 350px;
    max-height: 300px;
    min-width: 300px;
    min-height: 180px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    text-align: left;
}
.reset-container h2 {
    font-size: 20px;
    margin-top: 0;
    margin-bottom: 20px;
}
.reset-container p {
    font-size: 15px;
    margin: 10px 0 20px;
    text-align: center;
    color: #333; /* Light black color */
}
.reset-container p a {
    font-weight: bold;
    color: #444;
    text-decoration: none;
    cursor: pointer;
}
.reset-container p a:hover {
    text-decoration: underline;
}

