
.table td{
    vertical-align:middle;
}

body.login {
    background-color: #f0f2f5;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.login-box {
    background: #ffffff;
    padding: 35px 30px;
    border-radius: 10px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.15);
    width: 100%;
    max-width: 400px;
    text-align: center;
}

    .login-box img.logo {
        width: 100px;
        height: auto;
        margin-bottom: 20px;
    }

    .login-box h1 {
        font-size: 24px;
        font-weight: bold;
        margin-bottom: 25px;
        color: var(--primary-color-dark, #1a237e);
    }

.form-control {
    border-radius: 6px;
    margin-bottom: 15px;
    height: 45px;
    font-size: 16px;
}

.submit {
    background-color: var(--primary-color, #1a237e);
    color: white;
    border: none;
    padding: 12px;
    border-radius: 6px;
    width: 100%;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

    .submit:hover {
        background-color: var(--primary-color-dark, #0d144c);
    }

.position-relative {
    position: relative;
}

.toggle-password {
    position: absolute;
    top: 50%;
    right: 12px;
    transform: translateY(-50%);
    cursor: pointer;
    color: #6c757d;
}

.remember-me {
    text-align: left;
    margin: 10px 0 20px;
}

.text-danger {
    font-size: 14px;
}