/* =========================================================
   SELINA – PROFILE MAIL FORM STYLING
   ========================================================= */

.selina-profile-mail-form {
    max-width: 760px;
    margin: 0 auto;
    padding: 24px;
    background: #ffffff;
    border: 1px solid #e5e5e5;
}

/* Labels */
.selina-profile-mail-form label {
    display: block;
    font-weight: 500;
    margin: 18px 0 6px;
}

/* Inputs / Selects / Textareas */
.selina-profile-mail-form input[type="text"],
.selina-profile-mail-form select,
.selina-profile-mail-form textarea {
    width: 100% !important;
    max-width: 100% !important;
    padding: 10px 12px;
    border: 1px solid #cccccc;
    border-radius: 4px;
    background: #ffffff;
    appearance: auto;
    -webkit-appearance: auto;
}

/* Textarea */
.selina-profile-mail-form textarea {
    min-height: 140px;
    resize: vertical;
}

/* File Upload */
.selina-profile-mail-form input[type="file"] {
    border: 1px dashed #bbbbbb;
    padding: 12px;
    background: #fafafa;
}

/* Submit Button */
.selina-profile-mail-form button {
    margin-top: 24px;
    padding: 12px 22px;
    border: none;
    border-radius: 4px;
    background: #111111;
    color: #ffffff;
    font-size: 15px;
    cursor: pointer;
}

.selina-profile-mail-form button:hover {
    background: #000000;
}

/* =========================================================
   MOBILE
   ========================================================= */
@media (max-width: 767px) {
    .selina-profile-mail-form {
        max-width: 100%;
        border-left: none;
        border-right: none;
        border-radius: 0;
        padding: 16px;
    }
}
