.phc-login-page {

    min-height: 100vh;

    display: flex;

    align-items: center;

    justify-content: center;

    padding: 40px 16px;

    background: #F8FAFC;

}

.phc-login-card {

    width: 100%;

    max-width: 420px;

    background: #FFFFFF;

    border:
        1px solid #DCE3EA;

    border-radius: 24px;

    padding: 36px 28px;

    box-shadow:
        0 10px 30px rgba(15, 23, 42, 0.05);

}

.phc-login-logo {

    text-align: center;

    margin-bottom: 24px;

}

.phc-login-logo img {

    width: 90px;

    height: auto;

}

.phc-login-card h2 {

    text-align: center;

    font-size: 30px;

    font-weight: 700;

    color: #0F172A;

    margin-bottom: 10px;

}

.phc-login-subtitle {

    text-align: center;

    color: #64748B;

    font-size: 15px;

    margin-bottom: 28px;

}

.phc-login-error {

    background: #FEECEC;

    color: #DC2626;

    border-radius: 14px;

    padding: 14px;

    margin-bottom: 22px;

    font-size: 14px;

    font-weight: 500;

}

.phc-login-form {

    display: flex;

    flex-direction: column;

    gap: 22px;

}

.phc-login-field label {

    display: block;

    font-size: 14px;

    font-weight: 600;

    color: #0F172A;

    margin-bottom: 8px;

}

.phc-login-field input {

    width: 100%;

    padding: 14px 16px;

    border:
        1px solid #CBD5E1;

    border-radius: 14px;

    font-size: 15px;

    transition: 0.2s ease;

    outline: none;

}

.phc-login-field input:focus {

    border-color: #0CA678;

    box-shadow:
        0 0 0 3px rgba(12, 166, 120, 0.12);

}

.phc-login-btn {

    width: 100%;

    border: none;

    background: #0CA678;

    color: #FFFFFF;

    border-radius: 14px;

    padding: 15px;

    font-size: 15px;

    font-weight: 700;

    cursor: pointer;

    transition: 0.2s ease;

}

.phc-login-btn:hover {

    transform:
        translateY(-1px);

}

@media (max-width: 480px) {

    .phc-login-card {

        padding: 28px 20px;

    }

}


.phc-login-legal {

    margin-top: 22px;

    text-align: center;

    font-size: 13px;

    line-height: 1.7;

    color: #64748B;

}

.phc-login-legal a {

    color: #0CA678;

    text-decoration: none;

    font-weight: 600;

}

.phc-login-legal a:hover {

    text-decoration: underline;

}

/* ==========================================================
   Login Register CTA
========================================================== */

.phc-login-register {

    margin-top: 24px;

    padding-top: 20px;

    border-top: 1px solid #e2e8f0;

    text-align: center;

}

.phc-login-register p {

    margin: 0 0 14px;

    font-size: 15px;

    color: #64748b;

}

.phc-login-register-btn {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    width: 100%;

    height: 54px;

    border: none;

    border-radius: 14px;

    background: #0CA678;

    color: #FFFFFF;

    text-decoration: none;

    font-size: 15px;

    font-weight: 700;

    cursor: pointer;

    transition: 0.2s ease;

}

.phc-login-register-btn:hover {

    transform:
        translateY(-1px);

}

/* ==========================================================
   Mobile Responsive
========================================================== */

@media (max-width: 768px) {

    .phc-login-register-btn {

        width: 100%;

        text-align: center;

    }

}