.login-page {

    /* Breadcrumb */
    .breadcrumb {
        color: #5D5A58;
        font-family: "Segoe UI";
        font-size: 14px;
        font-style: normal;
        font-weight: 400;
        line-height: 22px;
        display: flex;
        align-items: center;
        gap: 8px;
        margin: 0;
    }

    .breadcrumb a {
        color: #5D5A58;
        text-decoration: none;
    }

    .breadcrumb a:hover {
        text-decoration: underline;
    }

    /* Welcome heading */
    .welcome-text {
        color: #03787C;
        font-family: "TCCC Unity";
        font-size: 32px;
        font-style: normal;
        font-weight: 700;
    }

    /* Container */
    .login-container {
        display: flex;
        flex-direction: column;
        padding: 60px 0;
        width: 500px;
        gap: 32px;
        margin: auto
    }

    .top {
        display: flex;
        gap: 24px;
        flex-direction: column;
    }

    /* Card */
    .card {
        background-color: white;
        border-radius: 16px;
        overflow: hidden;
        border: 1px solid rgba(0, 0, 0, 0.10);

    }

    .card-top {
        background-color: #E2F4F5;
        padding: 16px 0 21px 0;
        display: flex;
        flex-direction: column;
        gap: 20px;
        align-items: center;
    }

    /* Card Header Banner */
    .card-header {
        display: flex;
        width: 226px;
        height: 40px;
        justify-content: center;
        align-items: center;
        gap: 10px;
        border-radius: 50px;
        background: rgba(255, 255, 255, 0.40);
        color: #000;
        text-align: center;
        font-family: "TCCC Unity";
        font-size: 18px;
        font-style: normal;
        font-weight: 700;
        line-height: 100%;
        border: none;
    }

    /* Logo Section */
    .logo {
        text-align: center;
        padding: 0;
        height: 46px;
        color: #000;
        font-family: "TCCC Unity";
        font-size: 20px;
        font-style: normal;
        font-weight: 300;
        line-height: 100%;
        align-items: center;
        display: flex;
        gap:8px;
    }

    .logo strong {
        font-weight: 700;
    }

    /* Form Section */
    .form-section {
        display: flex;
        padding: 24px 24px 32px 24px;
        flex-direction: column;
        justify-content: center;
        align-items: flex-start;
        gap: 32px;
        align-self: stretch;
        margin: 0;
        background: none;
        border-radius: 0;
    }

    .form-section h3 {
        color: #0A0A0A;
        font-family: "TCCC Unity";
        font-size: 16px;
        font-style: normal;
        font-weight: 700;
        line-height: normal;
        margin: 0;
        padding: 0;
        letter-spacing: -0.312px;
    }

    .form-section label {
        color: #0A0A0A;
        font-family: "Segoe UI";
        font-size: 14px;
        font-style: normal;
        font-weight: 600;
        line-height: 14px;
        letter-spacing: -0.15px;
    }

    .form-section input {
        display: flex;
        height: 36px;
        padding: 0 12px;
        justify-content: space-between;
        align-items: center;
        flex-shrink: 0;
        align-self: stretch;
        border-radius: 8px;
        border: 1px solid rgba(0, 0, 0, 0.00);
        background: #F3F3F5;
    }

    .label-wrapper {

        display: flex;
        flex-direction: column;
        gap: 8px;
    }

    form {
        align-self: stretch;
        display: flex;
        flex-direction: column;
        gap: 32px;
    }

    /* Button Row */
    .btn-row {
        display: flex;
        align-items: center;
        gap: 15px;
    }

    .form-section button {
        padding: 12px 24px;
        background-color: #00796b;
        border: none;
        border-radius: 25px;
        color: white;
        font-size: 16px;
        cursor: pointer;
        font-family: "Segoe UI";
        font-weight: 600;
        line-height: 100%;
        margin: 0;
    }

    .form-section button:hover {
        background-color: #00695c;
    }

    .sso-link {
        color: #00796b;
        font-size: 14px;
        text-decoration: none;
        font-weight: bold;
    }

    .sso-link:hover {
        text-decoration: underline;
    }
}