.containerz {
    width: 100%;
    height: 100%;
    min-height: 100vh;
    background-color: black;
    position: relative;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

#canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.main-box {
    width: 30%;
    height: 70vh;
    background-color: #ffffff;
    border-radius: 20px;
    box-shadow: 4px 4px 10px #2b2b2b11, -4px -4px 10px #3b3b3b15;
    border: none;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-bottom: 5%;
    z-index: 1;
}

.login_submit {
    width: 60%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    text-align: center;
}

.login_submit a {
    width: 100% !important;
}

.form-control {
    width: 100% !important;
}

.login-header {
    font-size: 2.1rem;
    font-weight: 600;
    margin-top: 8%;
    padding-top: 40px;
    text-align: center;
    text-transform: uppercase;
}

hr {
    color: #3333338a;
}

.jnotification-container {
    -webkit-box-shadow: 0px 2px 15px -5px rgba(0, 0, 0, 0.7);
    box-shadow: 0px 2px 15px -5px rgba(0, 0, 0, 0.7);
    padding: 12px;
    border-radius: 8px;
    background-color: #d62424;
    background: rgb(111, 0, 255) !important;
    color: #fff;
    width: 320px;
    margin: 30px;
    padding: 20px;
}

.jnotification-error .jnotification-container {
    background: rgb(182, 38, 6) !important;
    background: linear-gradient(0deg, rgba(170, 41, 13, 1) 0%, rgba(149, 11, 11, 1) 100%);
}