#mw-singwall{
    height: 100%;
    width: 100%;
    position: fixed;
    background-color: rgba(0, 0, 0, .5);
    z-index: 200;
    align-items: center;
    justify-content: center;
    display: none;
}

#mw-singwall-card{
    width: 70%;
    background-color: #FFF;
    border-radius: 10px;
    padding: 30px 0px;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    gap: 22px;
}

#mw-close-singwall{
    height: 35px;
    width: 35px;
    position: absolute;
    right: 20px;
    top: 20px;
    font-size: 1.5rem;
    color: var(--footerGray);
    background-color: inherit;
    border: none;
    outline: none;
    cursor: pointer;
}

.mw-singwall-title{
    font-family: "NunitoSans-Bold";
    font-size: 20px;
    color: #4A4A4A;
    line-height: 30px;
    text-align: center;
}

.mw-singwall-subtitle{
    font-family: "NunitoSans-SemiBold";
    font-size: 13px;
    color: var(--footerGray);
}

.mw-singwall-submit{
    width: fit-content;
    padding: 15px 20px;
    border-radius: 10px;
    border: none;
    background-color: var(--defaultBlue);
    color: #FFF;
    font-family: "NunitoSans-Bold";
    font-size: 15px;
    text-transform: uppercase;
    cursor: pointer;
    margin-top: 15px;
    margin-bottom: 5px;
}

.mw-singwall-submit:hover{
    background-color: #0a3156;
}

.mw-singwall-row{
    display: flex;
    flex-direction: row;
    gap: 20px;    
    width: 80%;
}

.mw-singwall-input{
    width: 50%;
    padding: 13px;
    border: 2px solid var(--silver);
    border-radius: 10px;
    outline: none;
    font-size: 13px;
}

.mw-singwall-row label a{
    text-decoration: underline;
    color: blue;
}

#singwall-message{
    color: #fff;
    background: #d90f0f;
    padding: 5px 0px;
    border-radius: 5px;
    width: 80%;
    text-align: center;
}


@media (max-width: 900px){
    .mw-singwall-title{
        width: 70%;
        text-align: center;
    }
}
@media (max-width: 600px){
    #mw-singwall-card{
        width: 100%;
        margin: 20px;
    }

    #mw-close-singwall{
        width: 25px;
        right: 10px;
    }

    .mw-singwall-title{
        width: 100%;
        font-size: 16px;
    }

    .singwall-container {
        margin: 10px;
        margin-top: 25px;
    }

    .mw-singwall-row label {
        font-size: 12px;
    }

    #mw-singwall-card {
        gap: 15px;
    }

    .mw-singwall-row{
        flex-direction: column;
        align-items: center;
    }

    .mw-singwall-input{
        width: 100%;
    }
}

