@import url('https://fonts.googleapis.com/css2?family=Kalam:wght@300;400;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    height: 100vh;
    font-family: 'Kalam', cursive;
    background-color: #FBFBFB;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

h1 {
    font-size: 30px;
}

form {
    width: 40%;
    display: flex;
    flex-direction: column;
}

.short {
    width: 60%;
    height: 40vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: white;
    box-shadow: -1px 2px 51px -21px rgba(156, 158, 165, 0.5);
    border-radius: 10px;
}

input {
    width: 100%;
    padding: 12px 19px;
    background: #FBFBFB;
    border: none;
    font-size: 18px;
    margin-top: 27px;
    outline: none;
    border-radius: 5px;
    margin-bottom: 26px;
    color: #2C3342;
    font-family: 'Kalam', cursive;
}

input::placeholder {
    color: #2C3342;
    font-family: 'Kalam', cursive;
}

button {
    padding: 10px 15px;
    background-color: #E43E59;
    color: #fff;
    font-size: 16px;
    text-align: center;
    border: none;
    outline: none;
    font-family: 'Kalam', cursive;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.6s;
}

button:hover {
    background-color: #2C3342;
}

.popup-container {
    width: 100%;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    visibility: hidden;
    opacity: 0;
    transition: all 0.6s;
}

.popup-container.show {
    visibility: visible;
    opacity: 1;
}

.popup {
    width: 30%;
    height: 30vh;
    margin: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: white;
    padding: 50px;
    border-radius: 15px;
}

.popup ul li {
    font-size: 19px;
    color: #2C3342;
    list-style: none;
    padding-bottom: 26px;
    color: #E43E59;
}

.popup ul li a {
    color: #2C3342;
    font-family: cursive;
    text-decoration: none;
}