@import url(https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&family=Spartan:wght@400;500;600;700;800&display=swap);
.modal {
    display: none;
    position: fixed;
    z-index: 9999999999999999999999999999;
    left: 0;
    top: 0;
    height: 100vh;
    width: 100%;
    overflow: hidden;
    background: rgba(0, 0, 0, 0.5);
}

.modal-content {
    background: #f4f4f4;
    margin: 3% auto;
    width: 450px;
    box-shadow: 0 5px 8px 0 rgba(0, 0, 0, 0.2), 0 7px 20px 0 rgba(0, 0, 0, 0.4);
    animation-name: modalopen;
    animation-duration: 1s;
}

.modal-header {
    background: #ffffff;
    padding: 15px;
    color: #fff;
}

.modal-body {
    padding: 10px 20px;
}

.header-log {
    margin-top: 0.5rem;
    text-align: center;
}

.header-log a {
    margin-bottom: 1.3rem;
    color: #1257A6;
}

.header-log a:hover {
    color: rgb(9, 70, 139);
    font-weight: bold;
}

.closeBtn {
    color: #666666;
    float: right;
    font-size: 30px;
    transition: 0.5s;
}

.closeBtn:hover,
.closeBtn:focus {
    color: #111111;
    cursor: pointer;
}

.btn {
    color: #ffffff;
    background-color: #1257A6;
    padding: 0.8rem 2.3rem;
    border: none;
    border-radius: 5px;
    margin: 2rem auto;
    font-family: 'Montserrat', sans-serif;
    font-size: 2rem;
    font-weight: 500;
    transition: 0.4s ease;
}

.btn:hover {
    background-color: rgb(11, 68, 133);
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.4);
    color: #ffffff;
}

.sign-btn {
    text-align: center;
}

form input {
    outline: none;
    border: 0;
    border-bottom: 1px solid var(--link-color);
    background-color: transparent;
    color: var(--text-color);
    margin: 1rem 0;
    padding: 5px;
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 1px;
}

@keyframes modalopen {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}