* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.container {
    width: 100%;
    max-width: 400px;
    /* background-color: rgb(12, 83, 83); */
    margin: 264px auto;
    padding: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}


.container .submit {
    font-family: sans-serif;
    font-size: 20px;
    padding: auto;
    width: 100%;
    max-width: 150px;
    height: 40px;
    border: 1px;
    border-radius: 10px;
    outline: none;
    cursor: pointer;
    font-weight: 500;
}

.container .submit:active {
    background-color: rgb(209, 99, 121);
    transition: background-color 1s ease;
}

.pop-up {
    width: 350px;
    height: 400px;
    background: #999696;
    position: absolute;
    padding: 30px;
    /* Corrected from comma-separated to shorthand padding */
    color: #333;
    border-radius: 10px;
    display: none;
    gap: 15px;

    left: 50%;
    transform: translate(-50%, -50%) scale(0.1);
    /* Changed from (-50%, 50%) to (-50%, -50%) to center */
    text-align: center;
    /* transition: 3s ease-in-out */
}

.pop-up p {

    margin-top: 20px;
    font-weight: 900;
    text-wrap: balance;
}

.pop-Up {
    visibility: visible;
    top: 50%;
    transform: translate(-50%, -50%) scale(1);
}

@media (max-width: 468px) {
    .container .submit {

        display: flex;
        align-items: center;
        justify-content: center;


    }

    .pop-up {
        width: 65%;
    }

    .pop-up p {
        margin-top: 20px;
        font-weight: 900;
        text-wrap: balance;
    }

    .pop-up button {
        font-weight: bolder;

    }
}

.pop-up img {
    width: 90px;
    margin-bottom: 50px;
}

.pop-up h1 {
    font-size: 35px;
    font-family: sans-serif;
    text-align: center;
    margin-bottom: 5px;
}

.pop-up .ok {
    width: 80%;
    height: 40px;
    border: none;
    outline: none;
    background: #4CAF50;
    color: white;
    border-radius: 10px;
    margin-top: 60px;
    padding: 10px;
    cursor: pointer;
}

.pop-up .ok:active {
    background-color: #44be48;
    color: white;
    transform: scale(0.98);
}