/*
 *  * ========================================================================
 *  *                                COPYRIGHT
 *  *          ADN Technologies Limited PROPRIETARY INFORMATION
 *  *   This software is supplied under the terms of a license agreement or
 *  *   nondisclosure agreement with ADN Technologies Limited and may not be
 *  *   copied or disclosed except in accordance with the terms in that agreement.
 *  *   Copyright (C) 2024 - ADN Technologies Limited. All rights reserved.
 *  *
 *  * Revision History:
 *  * Date                 Author                           Action
 *  * 2024/11/19       Md. Shiam Prodhan       Create/Add/Modify/Delete
 *  * ========================================================================
 *
 *
 */

canvas {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    background-color: #5886a5;
    background-image: linear-gradient(45deg, #7aa6c2 0%, #c1e7ff 100%);
    width: 100%;
    height: 100%;
}

.login-form {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
    background: rgba(255, 255, 255, 0.7);
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
    z-index: 2;
}

/* Add this CSS to your styles */
#messageText {
    opacity: 0;
    transition: opacity 0.5s ease;
    display: none; /* Initially hidden */
}

#messageText.show {
    opacity: 1;
    display: block; /* Show when class is added */
}

.login-form img {
    width: 100px;
    display: block;
    margin: 0 auto;
}

#password-criteria {
    list-style-type: none;
    padding-left: 0;
    margin-top: 5px;
    display: none;
}

.form-control {
    transition: border-color 0.3s ease;
}

#password-criteria li {
    color: #dd5757;
    font-size: 0.9em;
}

#password-criteria li.valid {
    color: #6ed16e;
}

#password-criteria li.invalid {
    color: #dd5757;
}

