﻿body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.navbar {
    background-color: whitesmoke;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.navbar-brand img {
    height: 40px;
}

.login-container {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    height: calc(100vh - 200px);
}

.login-box {
    width: 100%;
    max-width: 400px;
    padding: 30px;
    border: 1px solid #ddd;
    border-radius: 8px;
    background-color: #fff;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.password-container {
    position: relative;
}


.password-container .toggle-password {
    position: absolute;
    left: 88%;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
}


