/* =============================
   FORM DOCUMENTS SECURISES
============================= */

#identification {
    max-width: 420px;
    margin: 40px auto;
    padding: 30px;
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.06);
}

/* Fieldset */

#identification fieldset {
    border: none;
    padding: 0;
    margin: 0;
}

/* Legend */

#identification legend {
    font-weight: 600;
    font-size: 16px;
    margin-bottom: 25px;
    text-align: center;
    color: #222;
}

/* Label */

#identification label {
    display: block;
    margin-bottom: 6px;
    font-weight: 600;
    font-size: 14px;
    color: #333;
}

/* Input */

#identification input {
    width: 100%;
    padding: 12px 14px;
    border-radius: 6px;
    border: 1px solid #dcdcdc;
    font-size: 14px;
    outline: none;
    transition: .2s;
}

#identification input:focus {
    border-color: #005fcc;
    box-shadow: 0 0 0 2px rgba(0,95,204,.15);
}

/* Error message */

.error-message {
    display: block;
    margin-top: 10px;
    margin-bottom: 15px;
    font-size: 13px;
    color: #d32f2f;
    min-height: 18px;
}

/* Button */

#identification button {
    width: 100%;
    padding: 12px;
    border: none;
    border-radius: 6px;
    background: #005fcc;
    color: white;
    font-weight: 600;
    cursor: pointer;
    transition: .25s;
}

#identification button:hover {
    background: #004bb0;
}

/* Required star */

#identification em {
    color: #d32f2f;
}

/* Mobile */

@media(max-width: 480px) {
    #identification {
        padding: 25px 20px;
    }
}
