* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.modal-container {
    background-color: rgba(4, 9, 28, .2);
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    top: 0;
    z-index: 9999;
}

.modal-card {
    background-color: white;
    width: 440px;
    height: 302px;
    border-radius: 16px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.modal-card-container {
    display: flex;
    width: 90%;
    height: 90%;
    gap: 40px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.modal-cross-btn{
    position: absolute;
    top: 20px;
    right: 20px;
    cursor: pointer;
}

.modal-cross-btn {
    display: flex;
    justify-content: flex-end;
}

.modal-cross-btn img {
    width: 16px;
    height: 16px;
}

.modal-card-heading {
    display: flex;
    justify-content: center;
    align-items: center;
}

.modal-card-heading h3 {
    font-size: 30px;
    font-weight: 700;
    line-height: 35px;
    letter-spacing: 0em;
    color: #056DFA;
}

.modal-card-text {
    display: flex;
    justify-content: center;
    align-items: center;
}

.modal-card-text p {
    font-weight: 400;
    line-height: 24px;
    letter-spacing: 0em;
    text-align: center;
    color: #13307E;
    opacity: 0.5;
}

.modal-card-button {
    width: 93%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.modal-card-button span{
    display: flex;
    align-items: center;
    font-size: 16px;
    font-weight: 500;
    text-align: center;
    color: white;
    
}
.modal-card-button button {
    width: 100%;
    height: 52px;
    border-radius: 16px;
    background-color: #056DFA;
    display: flex;
    justify-content: center;
    border: 0;
    align-items: center;
    gap: 15px;
    cursor: pointer;
}