/* Background image like the design */
/* Floating clear icon */
.input-with-clear {
    position: relative;
}

.input-with-clear input {
    padding-right: 40px;
}

.clear-input {
    position: absolute;
    right: 14px;
    top: 42px;
    font-size: 14px;
    color: #999;
    cursor: pointer;
}

.clear-input:hover {
    color: #333;
}

/* Popup container */
.confirmation-popup {
    background: #ffffff;
    border-radius: 16px;
    padding: 24px 20px;
    max-width: 320px;
    margin: auto;
    text-align: center;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
    padding-bottom: 40px;
}

/* Center popup vertically */
.login-container {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

/* Text inside popup */
.confirmation-text {
    font-size: 16px;
    line-height: 1.6;
    color: #555;
    margin-bottom: 30px;
}

/* Button already matches login */
.confirmation-popup .login-button {
    margin-top: 0;
}


.login-container.grey-bg-remove {
    background-color: transparent;
}

.grey-bg-remove .confirmation-popup {
    max-width: none;
}