﻿
.bounce-animation {
    animation-duration: 1s;
    animation-delay: 0.1s;
}
html, body {
    height: 100%;
    margin: 0;
    padding: 0;
    overflow: hidden;
}

body {
    opacity: 0;
    overflow: hidden !important;
}

.login-img {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

.container {
    position: relative;
    z-index: 1;
}
.screen-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: white;
    z-index: 1000;
    opacity: 1;
    animation: fadeOut 1s forwards;
}

@keyframes fadeOut {
    from {
        opacity: 1;
    }

    to {
        opacity: 0;
    }
}

.container-fluid {
    height: 100vh;
    margin: 0;
    padding: inherit;
}

.full-height {
    height: 100%;
}

.div-log {
    background: white;
    border-radius: 20px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.5);
    padding: 20px 25px;
}

.btn-log {
    background: #32bcc5;
    color: #ffff;
}

    .btn-log:hover {
        color: #ffff;
        background: #279ba4;
    }

.text-aqua {
    color: #32bcc5;
}

    .text-aqua:hover {
        color: #279ba4;
        cursor: pointer;
        text-decoration: underline;
    }


.input-group {
    display: flex;
    align-items: center;
    border-radius: 6px;
    border: 1px solid #e7edf3;
}

    .input-group input {
        flex: 1;
        border: none;
        border-top-left-radius: 6px;
        border-bottom-left-radius: 6px;
        padding: 10px;
        height: 38px;
        color: black;
        outline: none;
    }

        .input-group input::placeholder {
            color: black;
        }

    .input-group .toggle-password {
        text-align: center;
        cursor: pointer;
        width: 37px;
        color: rgba(0, 0, 0, 0.5);
    }

    .input-group:focus-within {
        box-shadow: 0 0 0 2px rgba(37, 140, 251, 0.5), 
        0 0 0 3px rgba(37, 140, 251, 0.2);
        border-radius: 7px;
    }

.color-w{
    color:white;
}

.tooltip-customss {
    display: none;
    color: #fff;
    font-size: 0.9em;
    z-index: 1;
    background-color: #dc3545;
    padding: 4px 8px;
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    position: absolute;
    top: 100%;
    left: 0px;
    margin-top: 5px;
    font-size: 12px;
}

.tooltip-customss::after {
    content: "";
    position: absolute;
    top: -15px;
    left: 15px;
    border-width: 8px;
    border-style: solid;
    border-color: transparent transparent #dc3545 transparent;
}

.tooltip-customs {
    background-color: #dc3545;
    color: #fff;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 12px;
    display: inline-block;
}

.display-n {
    display: none;
}

.custom-card {
    border-radius: 5px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.01);
    overflow: hidden;
    margin-top: 1rem;
    background-color: #fff;
}

.custom-card-body {
    padding: 1rem;
}

.cursor-not{
    cursor:not-allowed !important;
}

.ww2{
    width:90px;
}

.bg-dark-blue {
    background-color: #244f4a !important;
}


    .color-db {
        color: #244f4a !important;
    }

.btn-db {
    /*background: linear-gradient(135deg, #9A4DFF, #DA56F2);*/
    background: linear-gradient(135deg, #099178, #61ac85);
    color: #ffffff !important;
    border: none;
    border-radius: 8px;
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.3s;
}
    .btn-db:hover {
        /*background: linear-gradient(135deg, #DA56F2, #9A4DFF);*/
        background: linear-gradient(135deg, #61ac85, #099178);
    }

    .btn-db:focus {
        /*outline: 2px solid #244f4a !important;*/
        outline-offset: 2px !important;
    }

.icon-login {
    background: linear-gradient(135deg, #61ac85, #099178);
    -webkit-background-clip: text; 
    -webkit-text-fill-color: transparent;
}


.btnNotFound {
    background: #244f4a !important;
    color: #ffffff !important;
}

.btnNotFound:hover{
    opacity:0.8;
}

.input-with-icon {
    position: relative;
}

.input-with-icon input {
    padding-right: 35px;
}

.password-icon {
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
    cursor: pointer;
    color: #666;
    font-size: 16px;
}
.ellipsis {
    color: #266a75 !important;
}

input[type="password"]::-ms-reveal,
input[type="password"]::-ms-clear,
input[type="password"]::-webkit-credentials-auto-fill-button {
    display: none !important;
}