body {
    background: #f5f5f5;
    margin: 0;
}

.ml-header {
    background-color: #2f343a;
    color: #ffffff;
    padding: 10px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.ml-header-left {
    display: flex;
    align-items: center;
    gap: 10px;
}

.ml-logo {
    height: 100%;
    width: 200px;
    border-radius: 0;
    object-fit: contain;
}

.ml-brand-text {
    font-weight: 700;
    letter-spacing: 0.05em;
    font-size: 1.1rem;
}

.ml-header-right a {
    color: #ff8a3c;
    text-decoration: none;
    position: relative;
    font-size: 0.95rem;
}

.ml-header-right a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -3px;
    width: 100%;
    height: 2px;
    background-color: #ffffff;
}

.page-wrapper {
    min-height: calc(100vh - 60px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.card {
    max-width: 600px;
    width: 100%;
}

.ml-logo-header {
    background-color: #32353a !important;
}

.btn-primary {
    background-color: #fb814d;
    border-color: #fb814d;
}

.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active {
    background-color: #e56f3c;
    border-color: #e56f3c;
}

.btn-success {
    background-color: #28a745;
    border-color: #28a745;
}

.btn-success:hover,
.btn-success:focus,
.btn-success:active {
    background-color: #218838;
    border-color: #1e7e34;
}

@media (max-width: 576px) {
    .ml-header {
        padding: 10px 16px;
    }
}

