body {
    font-family: 'Amasis MT Pro Black', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #fffcfc;
}

#header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
}

#header img {
    margin: 0;
    height: 47px;
    width: 133px;
    color: #398BA5;
}

#account-settings {
    position: relative;
}

#account-settings .btn-link {
    color: #398BA5; /* Match the logo color */
    text-decoration: none;
    font-size: 16px;
    padding: 0;
}

#account-settings .btn-link:hover {
    text-decoration: underline;
}

#account-settings .collapse {
    position: absolute;
    top: 100%; /* Position the dropdown below the button */
    right: 0;
    z-index: 1000;
    width: 200px; /* Fixed width for the dropdown */
}

#account-settings .dropdown-menu {
    background-color: #fffcfc;
    border: 1px solid #ddd;
    border-radius: 7px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Optional: Add a subtle shadow */
    padding: 10px;
}

#account-settings .dropdown-item {
    display: block;
    color: #777;
    text-decoration: none;
    padding: 8px 0;
}

#account-settings .dropdown-item:hover {
    color: #398BA5; /* Match the logo color */
    background-color: #f8f9fa; /* Light background on hover */
}

#account-settings .dropdown-item.text-danger {
    color: #dc3545; /* Red color for delete account */
}

#account-settings .dropdown-item.text-danger:hover {
    color: #c82333; /* Darker red on hover */
}

#progress-bar {
    width: 100%;
    max-width: 100%;
    height: auto;
    display: flex;
    justify-content: center;
}

#progress-bar img {
    max-width: 100%;
    height: auto;/
}


#form-container {
    width: 620px;
    margin: 0 auto;
    background-color: white;
    border: 1px solid #ddd;
    border-radius: 7px;
    padding: 40px;
    box-sizing: border-box;
    position: absolute;
    top: 120px;
    left: 50%; /* Center horizontally */
    transform: translateX(-50%); /* Center horizontally */
}

#form-container form {
    margin-bottom: 10px;
}

#welcome-text {
    color: #777;
    font-size: 24px;
    text-align: center;
    margin-bottom: 30px;
    font-weight: bold;
}

#save-button {
    background-color: #398BA5;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    display: block;
    margin: auto;
}
#form-container label {
    display: block;
    margin-bottom: 5px;
}

#form-container input,
#form-container select {
    width: calc(100% - 10px);
    margin-bottom: 10px;
}

#signup-button-container {
    display: flex;
    align-items: center;
}

#signup-button-container p {
    margin-right: 20px;
}

#signup-button {
    background-color: white;
    color: skyblue;
    padding: 10px 20px;
    border: 2px solid skyblue;
    font-size: 16px;
    cursor: pointer;
}

.password-policy-list {
    list-style-type: disc;
    margin-top: 5px;
    padding-left: 20px;
}

.password-policy-list li {
    font-size: smaller;
}

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

.form-links {
    display: flex;
    justify-content: space-between;
}

.toggle-password {
    background: transparent;
    border: none;
    position: absolute;
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
}

.password-input-container {
    position: relative;
}

.password-group {
    position: relative;
}

/* Media query for smaller screens */
@media (max-width: 620px) {
    #form-container {
        width: 90%;
        position: relative;
        top: auto;
        left: auto;
        transform: none;
        margin-top: 20px;
    }
}

@media (max-width: 768px) {
    #logo {
        height: 40px;
        width: auto;
    }

    #signup-button-container {
        margin-top: 10px;
        text-align: center;
    }

    #signup-button-container p {
        margin-bottom: 5px;
    }

    #signup-button {
        font-size: 12px;
        padding: 8px 16px;
    }
}

@media (max-width: 576px) {
    #header img {
        height: 30px;
    }

    #signup-button-container {
        margin-top: 5px;
    }

    #signup-button-container p {
        font-size: 12px;
    }

    #signup-button {
        font-size: 10px;
        padding: 6px 12px;
    }
}