.login-body {
    background: #efefef;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.login-container {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 450px;
}
.login-container h2 {
    margin-bottom: 20px;
    font-weight: bold;
    text-align: center;
}
.btn-login {
    background: #007bff;
    color: #fff;
}
.btn-login:hover {
    background: #0056b3;
}