﻿.login-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 90vh;
    background-color: #f8f9fa;
}

.login-card {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    max-width: 500px;
    width: 100%;
    text-align: center;
}
.login-logo {
    margin-bottom: 1.5rem;
}

.login-title {
    margin-bottom: 1.5rem;
    text-align: center;
}

.form-group {
    margin-bottom: 1rem;
}

.btn-block {
    display: block;
    width: 100%;
}

.loginheader {
    background: black;
    text-align: center;
    height: 50px;
    color: #fff;
    width: auto;
    padding-top: 10px;
}

.password-container {
    position: relative;
}

.password-toggle {
    position: absolute;
    top: 50%;
    right: 10px;
    /*transform: translateY(-50%);*/
    cursor: pointer;
}
