body {
    margin: 0;
    padding: 0;
    background: #f1f5f9;
    font-family: "Segoe UI", sans-serif;
}

.login-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px;
}

.login-container {
    width: 100%;
    max-width: 80%;
    min-height: 60%;
    overflow: hidden;
    display: flex;
    border-radius: 18px;
    background: linear-gradient(145deg,
            #ffffff 0%,
            #eef4f9 60%,
            #9ac3f2 100%);

    box-shadow:
        0 20px 60px rgba(15, 23, 42, .08),
        0 1px 2px rgba(15, 23, 42, .05);
}

.login-branding {
    width: 60%;
    position: relative;
    /* border-radius: 24px; */
    background: linear-gradient(145deg,
            #ffffff 0%,
            #f7f8f9 60%,
            #ffffff 100%);

    box-shadow:
        0 20px 60px rgba(15, 23, 42, .08),
        0 1px 2px rgba(15, 23, 42, .05);
    display: flex;
    align-items: center;
    justify-content: center;
}

.watermark-wrapper {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.watermark-logo {
    width: 320px;
    opacity: .28;
}

.branding-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.branding-content h1 {
    font-size: 34px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 10px;
}

.branding-content h2 {
    font-size: 18px;
    color: #64748b;
    margin-bottom: 15px;
}

.branding-content p {
    color: #94a3b8;
    font-size: 14px;
    letter-spacing: .05em;
}

.login-panel {
    width: 40%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
}

.login-card {
    width: 100%;
    max-width: 400px;
}

.login-header {
    margin-bottom: 35px;
}

.login-header h3 {
    font-size: 28px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 6px;
}

.login-header p {
    color: #64748b;
    margin-bottom: 0;
}

.form-group label {
    font-size: 13px;
    font-weight: 600;
    color: #334155;
}

.form-control {
    height: 46px;
    border-radius: 8px;
    border: 1px solid #dbe3ec;
}

.form-control:focus {
    border-color: #c43b54;
    box-shadow: 0 0 0 .15rem rgba(196, 59, 84, .15);
}

.btn-login {
    background: #c43b54;
    border-color: #c43b54;
    height: 48px;
    border-radius: 8px;
    font-weight: 600;
    color: #ffffff;
}

.btn-login:hover {
    background: #b13249;
    border-color: #b13249;
}

.forgot-link {
    text-align: center;
    margin-top: 18px;
}

.forgot-link a {
    color: #64748b;
    font-size: 13px;
}

@media (max-width: 992px) {

    .login-branding {
        display: none;
    }

    .login-panel {
        width: 100%;
    }

    .login-container {
        min-height: auto;
    }
}


