.custom-form-container {
    width: 100%;
    max-width: 350px;
    margin: 40px auto;
    padding: 35px;
    background-color: #f7f7f7;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.custom-heading {
    margin-bottom: 25px;
    color: #505050;
    font-size: 26px;
    font-family: 'Helvetica Neue', Arial, sans-serif;
}

.custom-form {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.form-group {
    margin-bottom: 15px;
    width: 100%;
}

.custom-label {
    display: block;
    margin-bottom: 5px;
    color: #505050;
    font-size: 16px;
    width: 100%;
}

.password-wrapper {
    position: relative;
    width: 100%;
}

.custom-input-sign-up {
    width: 331px;
    padding: 10px;
    border-radius: 4px;
    border: 1px solid #d9d9d9;
    font-size: 14px;
    background-color: #fff;

}

.custom-input-sign-up:focus {
    border: 2px solid #ccc;
    border-color: #a1aab3;
    outline: none;
}

.toggle-password {
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
    background: none;
    border: none;
    cursor: pointer;
    font-size: 16px;
    color: #505050;
}

.form-footer {
    text-align: center;
    margin-top: 20px;
    color: #707070;
}

.form-footer a {
    text-decoration: none;
    color: #007BFF;
    font-weight: normal;
}

.form-footer a:hover {
    text-decoration: underline;
    color: #0069d9;
}

.autocomplete-items {
    border: 1px solid #888;
    width: 351px;
    border-bottom: none;
    border-top: none;
    z-index: 99;
    top: 100%;
    left: 0;
    right: 0;
}

.autocomplete-option {
    padding: 10px;
    cursor: pointer;
    background-color: #fff;
    border-bottom: 1px solid #d4d4d4;
}

.autocomplete-option:hover {
    background-color: #e9e9e9;
}
