.login-container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background-color: #f8f9fa;
}

.login-card {
    width: 100%;
    max-width: 400px;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    background-color: white;
}

.login-card .logo {
    max-height: 80px;
    margin-bottom: 20px;
}

.login-card h2 {
    margin-bottom: 30px;
    color: #343a40;
    text-align: center;
}

.login-card .form-control {
    height: 45px;
    border-radius: 5px;
}

.login-card .btn {
    height: 45px;
    border-radius: 5px;
    font-weight: 500;
}

.login-card .text-center {
    margin-top: 20px;
}

.login-card a {
    color: #007bff;
    text-decoration: none;
}

.login-card a:hover {
    text-decoration: underline;
}