/* =========================================
   CLEAN BREADCRUMB (LIKE IMAGE)
========================================= */
.breadcrumb-clean {
    background: #f3f4f6;
    padding: 60px 20px;
    text-align: center;
}

.breadcrumb-clean-inner {
    max-width: 1000px;
    margin: 0 auto;
}

/* TITLE */
.breadcrumb-clean-title {
    font-size: 34px;
    font-weight: 600;
    color: #111827;
    margin-bottom: 12px;
    letter-spacing: -0.4px;
}

/* LINKS */
.breadcrumb-clean-links {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: #6b7280;
}

.breadcrumb-clean-links a {
    text-decoration: none;
    color: #6b7280;
    transition: 0.2s;
}

.breadcrumb-clean-links a:hover {
    color: #111827;
}

/* ACTIVE */
.breadcrumb-clean-links .active {
    color: #111827;
    font-weight: 500;
}

/* SEPARATOR */
.breadcrumb-clean-links span {
    font-size: 14px;
}

/* =========================================
   RESPONSIVE
========================================= */
@media (max-width: 768px) {
    .breadcrumb-clean {
        padding: 40px 15px;
    }

    .breadcrumb-clean-title {
        font-size: 26px;
    }
}


.login-page .header {
    background: #f3f4f6;
}



/* =========================================
   RESET
========================================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', Arial, sans-serif;
    color: #333;
}

/* =========================================
   CONTAINER
========================================= */
.login-container {
    min-height: calc(100vh - 120px);
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
}

/* =========================================
   CARD
========================================= */
.login-card {
    width: 100%;
    /* height: 650px;  */
    max-width: 1000px;
    background: #fff;
    display: flex;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}



/* =========================================
   LEFT IMAGE
========================================= */
.login-image {
    width: 50%;
    background: linear-gradient(135deg, #ff7b8a, #ff5f7a);
    display: flex;
    align-items: center;
    justify-content: center;
}

.login-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* =========================================
   RIGHT FORM
========================================= */
.login-form {
    width: 50%;
    padding: 50px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* TITLE */
.login-form h2 {
    font-size: 36px;
    bottom: 6%;
    font-weight: 600;
    margin-bottom: 25px;
    text-align: center;
}

/* =========================================
   FORM GROUP
========================================= */

.form-group label {
    font-size: 14px;
    margin-bottom: 6px;
    display: block;
    color: #333;
}

/* INPUT */
.form-control {
    width: 100%;
    height: 45px;
    padding: 10px 14px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
    outline: none;
    background: #fff;
}

.form-control:focus {
    border-color: #ff5f7a;
}

/* =========================================
   PASSWORD
========================================= */
.password-wrapper {
    position: relative;
}

.password-toggle {
    position: absolute;
    right: 12px;
    top: 70%;
    transform: translateY(-50%);
    cursor: pointer;
    font-size: 14px;
    color: #999;
}

/* =========================================
   REMEMBER + FORGOT
========================================= */
.remember-forgot-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.form-check {
    display: flex;
    align-items: center;
    gap: 6px;
}

.form-check input {
    width: 14px;
    height: 14px;
}

.form-check label {
    font-size: 13px;
    color: #555;
}

.forgot-password-link {
    font-size: 13px;
    color: #999;
    text-decoration: none;
}

.forgot-password-link:hover {
    color: #ff5f7a;
}

/* =========================================
   BUTTON
========================================= */
.btn-primary {
    width: 100%;
    height: 45px;
    background: #ff5f7a;
    border: none;
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    border-radius: 4px;
    cursor: pointer;
}

.btn-primary:hover {
    background: #ff3f5f;
}

/* =========================================
   DIVIDER
========================================= */
.divider-wrapper {
    text-align: center;
    margin-top: 20px;
    font-size: 13px;
    color: #999;
}

/* =========================================
   SIGNUP
========================================= */
.signup-container {
    text-align: center;
}

.signup-container p {
    font-size: 13px;
    margin-bottom: 10px;
}

/* SIGNUP BUTTON FIX */
.signup-container .signup-link,
.signup-container .signup-link:visited,
.signup-container .signup-link:focus {
    display: block;
    width: 100%;
    height: 45px;
    line-height: 45px;
    background: #ec1d24;
    color: #fff !important;
    border-radius: 4px;
    text-decoration: none;
    font-size: 14px;
}

/* HOVER FIX */
.signup-container .signup-link:hover,
.signup-container .signup-link:active {
    background: #ff3f5f;
    color: #fff !important;
}

/* =========================================
   RESPONSIVE
========================================= */
@media (max-width: 768px) {

    .login-card {
        flex-direction: column;
    }

    .login-image {
        display: none;
    }

    .login-form {
        width: 100%;
        padding: 30px 20px;
    }
}


/* ------------------------------------------Register page----------------------------------------- */


/* =========================================
   FORM ROW (2 COLUMN)
========================================= */
.form-row {
    display: flex;
    gap: 12px;
}

.form-row .form-group {
    width: 50%;
}

/* =========================================
   SUBTITLE
========================================= */
.subtitle {
    font-size: 13px;
    color: #64748b;
    text-align: center;
    margin-bottom: 22px;
}

/* =========================================
   FORM GROUP
========================================= */
.form-group {
    margin-bottom: 18px;
}

.form-group label {
    font-size: 13px;
    margin-bottom: 6px;
    display: block;
    color: #64748b;
}

/* =========================================
   INPUT
========================================= */
.form-control {
    width: 100%;
    height: 46px;
    padding: 0 14px;
    border: 1px solid #e2e8f0;
    border-radius: 6px;
    font-size: 14px;
    background: #f9fafb;
    transition: all 0.2s ease;
}

.form-control:focus {
    border-color: #ff5f7a;
    background: #fff;
    box-shadow: 0 0 0 3px rgba(255, 95, 122, 0.12);
}

/* =========================================
   PASSWORD
========================================= */
.password-wrapper {
    position: relative;
}


.password-toggle:hover {
    color: #ff5f7a;
}

/* =========================================
   CHECKBOX (TERMS)
========================================= */
.form-check {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 12px 0 18px;
}

.form-check input {
    width: 15px;
    height: 15px;
    accent-color: #ff5f7a;
}

.form-check label {
    font-size: 13px;
    color: #64748b;
}

.form-check a {
    color: #ff5f7a;
    text-decoration: none;
}

.form-check a:hover {
    text-decoration: underline;
}

/* =========================================
   BUTTON
========================================= */
.btn-primary {
    width: 100%;
    height: 46px;
    background: #ec1d24;
    border: none;
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    border-radius: 6px;
    cursor: pointer;
    transition: 0.25s ease;
    box-shadow: 0 6px 18px rgba(255, 95, 122, 0.3);
}

.btn-primary:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    box-shadow: none;
}

.btn-primary:hover:not(:disabled) {
    transform: translateY(-1px);
    box-shadow: 0 10px 24px rgba(255, 95, 122, 0.4);
}

/* =========================================
   DIVIDER
========================================= */
.divider-wrapper {
    display: flex;
    align-items: center;
    gap: 10px;
}

.divider-line {
    flex: 1;
    height: 1px;
    background: #e2e8f0;
}

.divider-text {
    font-size: 12px;
    color: #94a3b8;
    white-space: nowrap;
}

/* =========================================
   LOGIN LINK
========================================= */
.login-link-container {
    text-align: center;
}

.login-link-container a {
    display: block;
    width: 100%;
    height: 46px;
    line-height: 46px;
    background: #ff6280;
    color: #fff !important;
    border-radius: 6px;
    text-decoration: none;
    font-size: 14px;
    transition: 0.25s ease;
}

.login-link-container a:hover {
    background: #ff3f5f;
    color: #fff !important;
}

/* =========================================
   RESPONSIVE
========================================= */
@media (max-width: 768px) {

    .form-row {
        flex-direction: column;
    }

    .form-row .form-group {
        width: 100%;
    }
}