body {
    font-family: Arial, sans-serif;
    background: #f7f8fb;
    margin: 0;
    color: #20242a;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.top-header {
    height: 72px;
    background: #ffffff;
    border-bottom: 1px solid #e4e8ef;
    display: flex;
    align-items: center;
    padding: 0 24px;
}

.top-header img {
    height: 28px;
    width: auto;
}

.page-content {
    flex: 1;
}

.container {
    width: 100%;
    background: #ffffff;
    border: 1px solid #e4e8ef;
    border-radius: 10px;
    padding: 28px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
    box-sizing: border-box;
}

.actions a {
    display: inline-block;
    text-decoration: none;
    background: #165dff;
    color: #ffffff;
    padding: 10px 14px;
    border-radius: 6px;
}

.login-footer {
    text-align: center;
    color: #5f6b7a;
    font-size: 13px;
    padding: 16px 12px 24px;
}

