body {
    font-family: Arial, sans-serif;
}

.popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.popup-content {
    color: #fff;
    background: #161718;
    padding: 20px;
    border-radius: 10px;
    position: relative;
    width: 350px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.25);
    animation: popupGrow 0.3s ease-out;
}

@keyframes popupGrow {
    0% {
        transform: scale(0.5);
        opacity: 0;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.popup-content .close {
    position: absolute;
    top: 0%;
    right: 10px;
    font-size: 30px;
    cursor: pointer;
}

.popup-content form {
    display: flex;
    flex-direction: column;
}

.popup-content label {
    margin-top: 10px;
}

.popup-content div {
    margin-top: 5px;
    padding-left: 8px;
    border: 1px solid #ccc;
    background: #898989;
    font-size: 16px;
    color: #000;
    display: flex;
    flex-direction: row;
    align-items: center;
}

.popup-content div > input {
    width: 100%;
    padding: 5px;
    background: none;
    font-size: 16px;
    margin-left: 8px;
    color: #000;
}

::placeholder {
    color: #272727;
}

.popup-content div > input:focus {
    box-shadow: none;
}

.popup-content button {
    margin-top: 20px;
    width: 100%;
    padding: 10px;
    color: #000;
    background: #F3C02F;
    cursor: pointer;
    transition: all .5s ;
}

.popup-content button:hover {
    box-shadow: 0 0 10px #ffffff79;
  }

.popup-content form h2 {
    color: #F3C02F;
    font-family: "Baloo 2", sans-serif;
    border-bottom: 2px solid #F3C02F;
}

.popup-content form h3 {
    margin-top: 10px;
    font-weight: 400;
    font-size: 14px;
}

.popup-content form h3 a {
    color: #F3C02F;
}