body {
    Xheight: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}
.login-container {
    margin-top: 5vh;
    background-color: white;
    padding: 20px;
    width: 350px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    border-radius: 8px;
    text-align: center;
}
.logo {
    width: 150px;
    margin-bottom: 20px;
}
.login-group {
    margin-bottom: 15px;
    text-align: left;
    position: relative;
}
.login-group label {
    font-size: 14px;
    color: #333;
}
.input-container {
    display: flex;
    align-items: center;
    position: relative;
}
.login-group input {
    width: 100%;
    padding: 10px;
    margin-top: 5px;
    border: 1px solid #ccc;
    border-radius: 5px;
    padding-right: 40px; /* Space for icon */
    background-color: white;
}
.toggle-visibility {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    font-size: 18px;
    color: #555;
}
.btn {
    width: 100%;
    padding: 10px;
    background: #1E54A0;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    margin-top: 20px;
}
.btn:hover {
    background: #2980b9;
}

.message {
    color: white;
    padding: 10px;
    border-radius: 5px;
    margin-bottom: 15px;
}
.red   { background: tomato; }
.green { background: #EEAE4A; }




