/* LETTER TYPE */

.dd-type-of-content-form {
    width: 700px;
    background-color: rgb(25,25,25);
    padding: 15px;
    border-radius: 1rem;
    border-top: 1px solid rgba(255,255,255,0.05);
    border-bottom: 1px solid rgba(255,255,255,0.02);
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.49);
    display: flex;
    flex-direction: column;
    row-gap: 15px;
}

.required-indicator {
    color: red;
}

.dd-type-of-content-form label {
    color: white;
    font-size: 1.1rem;
}

.dd-type-of-content-form-title-input {
    width: 100%;
    height: 40px;
    border-radius: 0.3rem;
    padding-inline: 10px;
    font-size: 1rem;
    border: 1px solid rgba(255,255,255,0.1);
    background-color: rgba(0,0,0,0.4);
    color: white;
    outline: none;
    margin-top: 3px;
}

.dd-type-of-content-form-message-input {
    width: 100%;
    min-width: 100%;
    max-width: 100%;
    min-height: 200px;
    max-height: 300px;
    border-radius: 0.3rem;
    padding: 5px;
    font-size: 1rem;
    border: 1px solid rgba(255,255,255,0.1);
    background-color: rgba(0,0,0,0.4);
    color: white;
    outline: none;
    margin-top: 3px;
}

.dd-type-of-content-form-submit-button {
    height: 45px;
    border-radius: 0.5rem;
    border: 0;
    font-size: 1rem;
    background-color: rgb(40,40,40);
    border-top: 1px solid rgba(255,255,255,0.05);
    border-bottom: 1px solid rgba(255,255,255,0.02);
    cursor: pointer;
    color: white;
    text-transform: uppercase;
}

.dd-type-of-content-form-submit-button:hover {
    background-color: rgb(45,45,45);
}

.dd-type-of-content-form-submit-button:active {
    background-color: rgb(42,42,42);
}

/* JS */

.type-content-title-input-js,
.type-content-message-input-js {
    border: 1px solid red;
}

/* MEDIA QUERIES */

@media (max-width: 800px) {
    .dd-type-of-content-form {
        width: calc(100% - 40px);
    }
}

@media (max-width: 450px) {
    .dd-type-of-content-form {
        width: calc(100% - 30px);
        padding: 12px;
        row-gap: 10px;
    }
}

@media (max-width: 350px) {
    .dd-type-of-content-form {
        width: calc(100% - 20px);
    }
}