/* Report Issues */
#issues{
    height: 100vh;
    overflow-y: hidden;
    /* display: flex; */
    /* align-items: center; */
    /* justify-content: center; */
}

.platform{
    margin: auto;
    margin-top: 3rem;
    height: 80%;
    width: 80%;
    border-radius: 10px;
    background-color: #fff;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
}

.show-off{
    /* background: #200122; */
    background: conic-gradient(from 45deg at 50% 50%, #667eea 0%, #764ba2 33%, #f093fb 66%, #667eea);
    height: 100%;
    position: relative;
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
    
}

.content {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

#form{
    display: flex;
    flex-direction: column;
    width: 50%;
    justify-content: space-between;
    margin: auto;
    height: 70%;
}

#form input{
    padding: 1rem;
    border-radius: 5px;
    outline: none;
    border: none;
    box-shadow: rgba(0, 0, 0, 0.05) 0px 6px 24px 0px, rgba(0, 0, 0, 0.08) 0px 0px 0px 1px;
}

#form input#send-btn{
    cursor: pointer;

}

#form textarea{
    padding: 1rem;
    border-radius: 5px;
    outline: none;
    border: none;
    box-shadow: rgba(0, 0, 0, 0.05) 0px 6px 24px 0px, rgba(0, 0, 0, 0.08) 0px 0px 0px 1px;
    font-family: 'Poppins', sans-serif;
    resize: none;
}

@media screen and (max-width: 1024px) {
    #form{
        width: 80%;
    }
}
@media screen and (max-width: 410px) {
    .platform{
        grid-template-columns: 1fr;
    }

    .show-off{
        border-radius: unset;
        border-top-left-radius: 10px;
        border-top-right-radius: 10px;
    }

    #form{
        height: 90%;
    }
}