﻿/* Error template */
.wrong-pass {
    width: 850px;
    height: 150px;
    font-size: 1.5em;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 999999;
    background: #f7cfd3;
    color: #721c24;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 20px 0px;
}

/* Success template */
.upload-success {
    width: 850px;
    height: 150px;
    font-size: 1.5em;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 999999;
    background: #cae3d7;
    color: #0f462c;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 20px 0px;
}