
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family:"BankGothic Md BT";
}

body {
    font-family: Arial, sans-serif;
    background-color: #000;
    color: #fff;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.login-container {
    background-color: #111;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(255, 255, 255, 0.1);
    width: 100%;
    max-width: 400px;
}

.login-title {
    text-align: center;
    margin-bottom: 30px;
    font-size: 24px;
    font-weight: 300;
}

.input-group {
    margin-bottom: 20px;
}

.input-group label {
    display: block;
    margin-bottom: 8px;
    color: #ccc;
}

.input-group input {
    width: 100%;
    padding: 12px;
    background-color: #222;
    border: 1px solid #333;
    border-radius: 4px;
    color: #fff;
    font-size: 16px;
}

.input-group input:focus {
    outline: none;
    border-color: #fff;
}

.login-btn {
    width: 100%;
    padding: 12px;
    background-color: #fff;
    color: #000;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.login-btn:hover {
    background-color: #ddd;
}

.links {
    text-align: center;
    margin-top: 20px;
}

.links a {
    color: #ccc;
    text-decoration: none;
    font-size: 14px;
}

.links a:hover {
    color: #fff;
}



.animated-alert {
    padding: 16px;
    background: #ffffff;
    border: 1px solid #ffffff;
    border-radius: 8px;
    margin-bottom: 20px;
    animation: slideDown 0.3s ease-out;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.alert-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
}

.alert-icon {
    width: 20px;
    height: 20px;
    background: #434241;
    color: #000000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: bold;
}

.alert-message {
    color:  #434241;
    font-weight: 600;
    font-size: 14px;
}

.animated-alert ul {
    margin: 0;
    padding-right: 24px;
}

.animated-alert li {
    color:  #434241;
    font-size: 13px;
    line-height: 1.5;
}

.error-list-2 {
    color: black;
}



.password-tooltip {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 5px;
}

.tooltip-icon {
    width: 16px;
    height: 16px;
    background: #ffffff;
    color: #000000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    font-weight: bold;
    cursor: help;
    transition: all 0.3s ease;
}

.tooltip-icon:hover {
    background: #333;
}

.tooltip-text {
    visibility: hidden;
    width: 160px;
    background: #ffffff;
    color: #000000;
    text-align: center;
    border-radius: 4px;
    padding: 6px 8px;
    position: absolute;
    z-index: 1;
    bottom: 140%;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0;
    transition: opacity 0.3s;
    font-size: 10px;
    line-height: 1.3;
}

.tooltip-text::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border-width: 4px;
    border-style: solid;
    border-color: #ffffff transparent transparent transparent;
}

.tooltip-icon:hover + .tooltip-text {
    visibility: visible;
    opacity: 1;
}


.password-icon {
    text-align: center;
    font-size: 48px;
    margin-bottom: 20px;
    color: #28a745;
}
.password-instruction {
    text-align: center;
    color: #6c757d;
    margin-bottom: 25px;
    font-size: 14px;
}
.update-btn {
    background: #28a745;
    margin-top: 15px;
}
.update-btn:hover {
    background: #218838;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(40, 167, 69, 0.3);
}

.animated-alert-session{
    padding: 12px 15px;
    background: white;
    border: 1px solid white;
    border-radius: 8px;
    margin-bottom: 15px;
    animation: slideDown 0.3s ease-out;
    color: black;
}
