.cardPrevSendMessage{
    width: 500px;
    padding: 20px 20px;
    position: relative;
    background-color: var(--bg-contenedor-dark);
}

.cardPrevSendMessage>h3{
    color: var(--color-title-dark);
    text-align: center;
    margin-bottom: 20px;
}

.cardPrevSendMessage__form{
    width: 100%;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-direction: column;
}

.cardPrevSendMessage__form>label{
    width: 100%;
    display: flex;
    color: var(--color-title-dark);
    justify-content: flex-start;
    align-items: flex-start;
    flex-direction: column;
    margin-bottom: 10px;
}

.cardPrevSendMessage__form>label>textarea{
    display: block;
    width: 100%;
}

.cardPrevSendMessage__form>label>input{
    height: 30px;
}

.cardPrevSendMessage__form>button{
    width: 100%;
    height: 40px;
    color: var(--color-title-dark);
    border: none;
    cursor: pointer;
    border-radius: 2px;
    background-color: var(--bg-principal-dark);
}

.cardPrevSendMessage>button{
    position: absolute;
    top: 10px;
    right: 10px;
    width: 30px;
    height: 30px;
    border: none;
    border-radius: 2px;
    background-color: var(--bg-rd);
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    z-index: 90;
}

.cardPrevSendMessage>button>img{
    width: 100%;
}

.cardPrevSendMessage>button:hover{
    background-color: var(--bg-hover-rd);
}