.modal#ipn-modal {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(0, 0,0, 0);
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    border-radius: 20px;
    height: 100%;
    transition: background-color 0.2s ease;
    transform: translateY(100%);
}

.modal#ipn-modal .modal-content {
    transition: transform 0.2s ease;
    transform: translateY(100%);
    background-color: #061D19;
    padding: 20px;
    border-radius: 20px 20px 0 0;
    width: 100%;
    color: white;
    box-sizing: border-box;
}

.modal#ipn-modal .modal-content h2 {
    font-size: 16px;
    font-weight: 700;
    line-height: 20px;
    text-align: center;
    margin-top: 0px;
    margin-bottom: 15px;
}

.modal#ipn-modal p {
    font-size: 14px;
    line-height: 20px;
    color: #fff;
    opacity: 0.4;
    line-height: 20px;
    margin-bottom: 20px;
}

.modal#ipn-modal .input-group {
    margin-top: 20px;
    margin-bottom: 10px;
}

.error {
    opacity: 1 !important;
    color: red !important;
    margin: 0 !important;
    text-align: center !important;
}

.modal#ipn-modal .input-group label {
    font-size: 14px;
    color: #fff;
    font-weight: 500;
    line-height: 16px;
    margin-bottom: 10px;
    display: block;
}

.modal#ipn-modal .input-group input {
    width: 100%;
    padding: 10px;
    border-radius: 5px;
    border: none;
    background-color: #07372F;
    color: white;
    font-size: 14px;
    box-sizing: border-box;
}

.modal#ipn-modal .input-group::placeholder {
    font-size: 14px;
    line-height: 20px;
    color: #fff;
    opacity: 0.5;
}

.modal#ipn-modal .submit-button {
    background-color: #14CBB4;
    color: #000;
    border: none;
    padding: 15px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    width: 100%;
    text-align: center;
}

.modal#ipn-modal .submit-button:hover {
    background-color: #098256;
}

.modal#ipn-modal .note {
    font-size: 14px;
    color: #fff;
    opacity: 0.4;
    text-align: center;
    margin-top: 10px;
}
.modal#ipn-modal .close {
	cursor: pointer;
	font-size: 25px;
	text-align: end;
	line-height: 0px;
	position: absolute;
	right: 20px;
	top: 30px;
}