body.login_admin, html {
    height: 100%;
    margin: 0;
    font-family: Arial, sans-serif;
    background: #f5f5f5;
}

.login-wrapper {
    display: flex;
    height: 100vh;
}

.login-left {
    flex: 70%;
}

.login-left img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.login-right {
    flex: 30%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    box-shadow: -4px 0 10px rgba(0, 0, 0, 0.05);
}

.login-box {
    width: 80%;
    max-width: 350px;
    text-align: center;
}

.login-title {
    font-size: 24px;
    font-weight: 600;
    color: #333;
    margin: 20px 0 30px;
}

.btn-microsoft {
    display: block;
    width: 100%;
    padding: 12px;
    background: #0078D4;
    color: #fff;
    text-align: center;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: background 0.3s;
}

.btn-microsoft:hover {
    background: #005a9e;
    color: black;
}

.login-title {
    display: flex;
    gap: 10px;
    justify-content: center;
}

.login-wrapper .login-left img{
    object-fit:fill;
}