/*
    * Author:         MD Masud Sikdar
    * App Version:    1.0.0
    * Email:          masudsikdar85@yahoo.com
    * Author URL:     https://www.mdmasudsikdar.com
*/

.required:after {
    content: " *";
    color: red;
}

form label {
    font-weight: bold;
    color: black;
}

input.passCodeHash {
    -webkit-text-security: disc;
}

.drop-zone {
    max-width: 100%;
    height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-family: "Quicksand", sans-serif;
    font-weight: 500;
    font-size: 20px;
    cursor: pointer;
    color: #cccccc;
    border: 1px solid #0160E0 !important;
    border-radius: 10px;
}

.drop-zone--over {
    border-style: solid;
}

.drop-zone__input {
    display: none;
}

.drop-zone__thumb {
    width: 100%;
    height: 100%;
    border-radius: 10px;
    overflow: hidden;
    background-color: #cccccc;
    background-size: cover;
    position: relative;
}

.drop-zone__thumb::after {
    content: attr(data-label);
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 5px 0;
    color: #ffffff;
    background: rgba(0, 0, 0, 0.75);
    font-size: 14px;
    text-align: center;
}
