body {
    background-color: #ebebeb;
    height: 100%;
}

.form {
    padding-bottom: 0;
}

.content-wrapper {
    padding-bottom: 0;
}

.content {
    display: table;
    height: calc(100vh - 3.13rem); /* 3.13rem is the Header size */
}

.formLayout-verticalAlign {
    display: table-cell;
    vertical-align: middle;
}

.formLayout-container {
    background-color: white;
    margin-left: auto;
    margin-right: auto;
    max-width: 462px;
    box-shadow: 0px 1px 4px 0 rgba(0, 0, 0, 0.2) !important;
    border-radius: 2px;
}

.formLayout-groupBox {
    margin: 0;
    padding: 0 !important;
}

.formLayout-generalErrorText {
    color: red;
    padding-top: 1em;
}

.footer-wrapper {
    position: static;
    display: table-row;
}

.input-container {
    width: 100%;
    display: flex;
    align-items: center;
}

.input-field, .password-field {
    width: 100%;
    padding: 10px;
    font-size: 16px; /* Match the font size */
    height: 40px; /* Match the height of the button */
    box-sizing: border-box;
}

    .input-field::placeholder, .password-field::placeholder {
        vertical-align: middle;
    }

.eye-button {
    height: 40px; /* Ensure it matches the input field */
    font-size: 16px; /* Match the text size */
}


.password-container {
    position: relative; /* Ensures button stays inside the input field */
    width: 100%;
    display: flex;
    align-items: center; /* Aligns items in one row */
}

.password-field {
    width: 100%;
    padding: 10px;
    font-size: 16px;
    padding-right: 40px; /* Ensures button doesn't overlap text */
    box-sizing: border-box; /* Ensures padding doesn't break layout */
}

.eye-button {
    position: absolute;
    right: 10px; /* Moves the button to the right end */
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    cursor: pointer;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}

    .eye-button > div {
        background: url('Images/eye-button.svg') no-repeat center;
        background-size: contain;
        width: 18px;
        height: 18px;
        pointer-events: none;
        user-select: none;
    }

    .eye-button.show-password > div {
        background: url('Images/eye-button-hide.svg') no-repeat center;
        background-size: contain;
    }
