:root {
    --wine: #7b2348;
    --wine-dark: #43152f;
    --gold: #c6a15b;
    --cream: #fbf4ed;
    --paper: #fffdfb;
    --ink: #292329;
    --muted: #756b72;
    --line: #eadde2;
    --shadow: 0 18px 50px rgba(67, 21, 47, .12)
}

* {
    box-sizing: border-box
}

html {
    scroll-behavior: smooth
}

body {
    margin: 0;
    font-family: "DM Sans", sans-serif;
    color: var(--ink);
    background: var(--paper);
    line-height: 1.7
}

img {
    max-width: 100%;
    display: block
}

a {
    text-decoration: none;
    color: inherit
}

.container {
    width: min(1160px, calc(100% - 40px));
    margin: auto
}

.topbar {
    background: var(--wine-dark);
    color: #fff;
    font-size: 12px
}

.topbar-inner {
    display: flex;
    justify-content: space-between;
    padding: 8px 0
}

.topbar a {
    text-decoration: underline
}

.navbar {
    height: 82px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: "Playfair Display", serif;
    font-size: 25px;
    font-weight: 700;
    color: var(--wine)
}

.logo small {
    display: block;
    font: 600 8px "DM Sans", sans-serif;
    letter-spacing: 3px;
    color: var(--gold)
}

.logo-mark {
    width: 42px;
    height: 42px;
    border: 1px solid var(--gold);
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-family: "Playfair Display";
    font-size: 22px
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
    font-size: 14px;
    font-weight: 600
}

.nav-links a {
    position: relative
}

.nav-links a.active,
.nav-links a:hover {
    color: var(--wine)
}

.nav-links a.active:after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -9px;
    height: 2px;
    background: var(--gold)
}

.nav-whatsapp {
    background: var(--wine);
    color: #fff !important;
    padding: 10px 17px;
    border-radius: 4px
}

.nav-whatsapp:hover {
    background: var(--wine-dark)
}

.menu-toggle {
    display: none;
    border: 0;
    background: none;
    font-size: 27px;
    color: var(--wine)
}


.hero {
    height: 650px;
    position: relative;
    overflow: hidden;
    background: #4b2330
}

.hero-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity .7s ease
}

.hero-slide:before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(45, 12, 25, .82), rgba(45, 12, 25, .25), rgba(45, 12, 25, .05))
}

.hero-slide.active {
    opacity: 1
}

.hero-content {
    position: relative;
    z-index: 2;
    color: #fff;
    padding-top: 150px
}

.eyebrow {
    font-size: 11px;
    letter-spacing: 3px;
    font-weight: 700;
    color: #ead8ae
}

.eyebrow.dark {
    color: var(--gold)
}

h1,
h2,
h3 {
    font-family: "Playfair Display", serif;
    line-height: 1.15;
    margin-top: 0
}

h1 {
    font-size: 64px;
    margin: 17px 0
}

h1 em,
h2 em {
    font-style: italic;
    color: #d8b46b
}

h2 {
    font-size: 44px;
    margin: 10px 0 15px
}

.hero-content p {
    max-width: 540px;
    font-size: 17px;
    color: #f6edf0
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid transparent;
    padding: 13px 24px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .5px;
    border-radius: 3px;
    transition: .25s
}

.btn-primary {
    background: var(--wine);
    color: #fff
}

.btn-primary:hover {
    background: var(--wine-dark);
    transform: translateY(-2px)
}

.btn-outline {
    border-color: var(--wine);
    color: var(--wine)
}

.btn-outline:hover {
    background: var(--wine);
    color: #fff
}

.btn-light {
    background: #fff;
    color: var(--wine)
}

.slider-arrow {
    position: absolute;
    z-index: 4;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border: 1px solid rgba(255, 255, 255, .45);
    background: rgba(0, 0, 0, .15);
    color: #fff;
    font-size: 34px;
    cursor: pointer
}

.slider-arrow.prev {
    left: 25px
}

.slider-arrow.next {
    right: 25px
}

.slider-dots {
    position: absolute;
    bottom: 28px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 4
}

.slider-dots button {
    width: 8px;
    height: 8px;
    border: 0;
    border-radius: 50%;
    background: #fff;
    opacity: .45;
    padding: 0;
    cursor: pointer
}

.slider-dots button.active {
    opacity: 1;
    width: 24px;
    border-radius: 5px
}


.section {
    padding: 90px 0
}

.section-heading {
    display: flex;
    align-items: end;
    justify-content: space-between;
    margin-bottom: 38px
}

.section-heading.center {
    display: block;
    text-align: center
}

.section-heading p {
    color: var(--muted);
    max-width: 600px;
    margin: 0 auto
}

.text-link {
    color: var(--wine);
    font-weight: 700;
    font-size: 13px
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px
}

.category-card {
    height: 330px;
    position: relative;
    overflow: hidden;
    background: #ddd
}

.category-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s
}

.category-card:after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(transparent 35%, rgba(34, 8, 18, .8))
}

.category-card:hover img {
    transform: scale(1.05)
}

.category-card>div {
    position: absolute;
    z-index: 2;
    bottom: 22px;
    left: 22px;
    color: #fff
}

.category-card h3 {
    margin: 0 0 3px;
    font-size: 24px
}

.category-card span {
    font-size: 12px
}

.featured {
    background: linear-gradient(180deg, #fffaf6 0%, var(--cream) 100%)
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px
}

.product-card {
    background: #fff;
    transition: .3s
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow)
}

.product-image {
    height: 360px;
    position: relative;
    overflow: hidden;
    background: #eee
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .5s
}

.product-card:hover .product-image img {
    transform: scale(1.04)
}

.badge {
    position: absolute;
    top: 14px;
    left: 14px;
    background: var(--wine);
    color: #fff;
    padding: 5px 10px;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 1px
}

.product-info {
    padding: 17px
}

.product-info h3 {
    font-size: 19px;
    margin-bottom: 5px
}

.product-info p {
    font-size: 12px;
    color: var(--muted);
    margin: 0 0 8px
}

.product-info strong {
    color: var(--wine);
    font-size: 16px
}

.about-preview {
    padding: 100px 0;
    background: linear-gradient(135deg, #fffdfb 0%, #fbf2f5 100%)
}

.about-preview-grid,
.about-page-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 75px;
    align-items: center
}

.about-image img,
.rounded-image {
    width: 100%;
    height: 540px;
    /*object-fit: cover*/
}

.about-copy p {
    color: var(--muted);
    margin: 0 0 15px
}

.about-copy .btn {
    margin-top: 15px
}

.why-us {
    background: var(--cream)
}

.features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px
}

.feature {
    text-align: center;
    padding: 20px
}

.feature-icon {
    margin: 0 auto 16px;
    width: 58px;
    height: 58px;
    border: 1px solid var(--gold);
    border-radius: 50%;
    display: grid;
    place-items: center;
    color: var(--gold);
    font-family: "Playfair Display";
    font-size: 20px
}

.feature h3 {
    font-size: 20px;
    margin-bottom: 6px
}

.feature p {
    font-size: 13px;
    color: var(--muted);
    margin: 0
}

.cta {
    background: var(--wine);
    color: #fff;
    padding: 55px 0
}

.cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between
}

.cta h2 {
    margin: 8px 0 0
}

.footer {
    background: #321426;
    color: #e8dfe2;
    padding-top: 55px
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr;
    gap: 50px;
    padding-bottom: 45px
}

.footer .logo {
    color: #fff
}

.footer h4 {
    font-family: "Playfair Display";
    font-size: 18px;
    color: #fff;
    margin-top: 0
}

.footer a,
.footer p {
    display: block;
    color: #cbbfc3;
    font-size: 13px;
    margin: 7px 0
}

.copyright {
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, .1);
    padding: 18px;
    font-size: 11px;
    color: #988b90
}

.floating-whatsapp {
    position: fixed;
    right: 22px;
    bottom: 22px;
    width: 52px;
    height: 52px;
    background: #1aa260;
    color: #fff;
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-size: 26px;
    z-index: 20;
    box-shadow: 0 8px 25px rgba(0, 0, 0, .2)
}

.page-hero {
    background: linear-gradient(110deg, var(--wine-dark), var(--wine));
    color: #fff;
    padding: 90px 0
}

.page-hero h1 {
    font-size: 54px;
    margin: 12px 0
}

.page-hero p {
    margin: 0;
    color: #e9dfe2
}

.light-section {
    background: var(--cream)
}

.filter-bar {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 9px;
    margin-bottom: 35px
}

.filter {
    border: 1px solid var(--line);
    background: #fff;
    padding: 9px 18px;
    color: var(--muted);
    cursor: pointer;
    border-radius: 3px
}

.filter.active,
.filter:hover {
    background: var(--wine);
    color: #fff;
    border-color: var(--wine)
}

.breadcrumb {
    font-size: 12px;
    color: var(--muted);
    margin-bottom: 30px
}

.breadcrumb a {
    color: var(--wine)
}

.product-detail-section {
    padding-top: 55px
}

.detail-grid {
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: 70px;
    align-items: start
}

.detail-gallery {
    background: #f0ebe5
}

.detail-gallery img {
    width: 100%;
    height: 650px;
    object-fit: cover
}

.detail-content h1 {
    font-size: 46px;
    margin: 12px 0
}

.detail-price {
    font-size: 25px;
    font-weight: 700;
    color: var(--wine);
    margin-bottom: 18px
}

.detail-description {
    color: var(--muted);
    font-size: 15px
}

.specs {
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    margin: 28px 0;
    padding: 10px 0
}

.specs div {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid #eee
}

.specs div:last-child {
    border: 0
}

.specs span {
    color: var(--muted);
    font-size: 13px
}

.specs strong {
    font-size: 13px
}

.full-btn {
    width: 100%;
    margin-bottom: 10px
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px
}

.contact-info h2 {
    font-size: 45px
}

.contact-info>p {
    color: var(--muted);
    max-width: 500px
}

.contact-item {
    padding: 15px 0;
    border-bottom: 1px solid var(--line);
    display: flex;
    flex-direction: column
}

.contact-item strong {
    font-size: 12px;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 1px
}

.contact-item a,
.contact-item span {
    font-size: 15px
}

.contact-form {
    background: var(--cream);
    padding: 35px
}

.contact-form h3 {
    font-size: 28px
}

.contact-form label {
    display: block;
    font-size: 12px;
    font-weight: 700;
    margin: 15px 0
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    margin-top: 7px;
    padding: 12px 13px;
    border: 1px solid var(--line);
    font: inherit;
    background: #fff;
    outline: 0
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: var(--gold)
}

.form-note {
    font-size: 12px;
    color: var(--wine);
    margin: 10px 0 0
}

.map-placeholder {
    height: 350px;
    background: linear-gradient(135deg, #ead9df, #d7c0ca);
    display: grid;
    place-items: center;
    text-align: center
}

.map-placeholder span {
    font-size: 11px;
    letter-spacing: 2px;
    color: var(--wine)
}

.map-placeholder h2 {
    margin: 8px 0
}

.map-placeholder p {
    margin: 0 0 15px;
    color: #5c5351
}

@media(max-width:900px) {
    .nav-links {
        gap: 18px
    }

    .category-grid,
    .product-grid {
        grid-template-columns: repeat(2, 1fr)
    }

    .features {
        grid-template-columns: repeat(2, 1fr)
    }

    .about-preview-grid,
    .about-page-grid,
    .detail-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px
    }

    .detail-gallery img {
        height: 520px
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr
    }

    .hero {
        height: 350px
    }

    .hero-content {
        padding-top: 120px
    }
}

@media(max-width:700px) {
    .container {
        width: min(100% - 28px, 1160px)
    }

    .sm-display-none {
        display: none;

    }

    .topbar {
        display: none
    }

    .navbar {
        height: 72px
    }

    .menu-toggle {
        display: block
    }

    .nav-links {
        display: none;
        position: absolute;
        z-index: 30;
        top: 72px;
        left: 0;
        right: 0;
        background: #fff;
        padding: 20px;
        box-shadow: 0 15px 30px rgba(0, 0, 0, .1);
        flex-direction: column;
        align-items: stretch;
        gap: 0
    }

    .nav-links.open {
        display: flex
    }

    .nav-links a {
        padding: 12px 5px
    }

    .nav-links a.active:after {
        display: none
    }

    .nav-whatsapp {
        text-align: center;
        margin-top: 7px
    }

    .hero {
        height: 190px;
    }

    .hero-slide {
        background-position: 62% center
    }

    .hero-content {
        padding-top: 115px
    }

    .hero-content h1 {
        font-size: 46px
    }

    .hero-content p {
        font-size: 14px;
        max-width: 400px
    }

    .slider-arrow {
        width: 36px;
        height: 36px;
        font-size: 28px
    }

    .slider-arrow.prev {
        left: 10px
    }

    .slider-arrow.next {
        right: 10px
    }

    h2 {
        font-size: 35px
    }

    .section {
        padding: 65px 0
    }

    .section-heading {
        display: block
    }

    .section-heading .text-link {
        display: inline-block;
        margin-top: 8px
    }

    .category-grid,
    .product-grid {
        grid-template-columns: 1fr 1fr;
        gap: 12px
    }

    .category-card {
        height: 250px
    }

    .category-card h3 {
        font-size: 19px
    }

    .product-image {
        height: 260px
    }

    .product-info {
        padding: 12px
    }

    .product-info h3 {
        font-size: 16px
    }

    .about-image img,
    .rounded-image {
        height: 400px
    }

    .features {
        grid-template-columns: 1fr 1fr;
        gap: 5px
    }

    .feature {
        padding: 10px 5px
    }

    .cta-inner {
        display: block
    }

    .cta .btn {
        margin-top: 20px
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 20px
    }

    .page-hero {
        padding: 65px 0
    }

    .page-hero h1 {
        font-size: 44px
    }

    .detail-content h1 {
        font-size: 38px
    }

    .detail-gallery img {
        height: 430px
    }

    .contact-form {
        padding: 25px
    }

    .floating-whatsapp {
        right: 15px;
        bottom: 15px
    }
}

@media(max-width:420px) {

    .category-grid,
    .product-grid {
        grid-template-columns: 1fr
    }

    .sm-display-none {
        display: none;

    }

    .product-image {
        height: 390px
    }

    .category-card {
        height: 330px
    }

    .hero-content h1 {
        font-size: 40px
    }
}


/********login page css**********/
@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700&family=Playfair+Display:wght@500;600;700&display=swap');

:root {
    --wine: #7b2348;
    --wine-dark: #43152f;
    --gold: #c6a15b;
    --gold-light: #e4c982;
    --cream: #fbf4ed;
    --white: #ffffff;
    --text: #292329;
    --muted: #756b72;
    --border: #eadde2;
}

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

body {
    font-family: "DM Sans", sans-serif;
    color: var(--text);
    background: var(--cream);
}

a {
    text-decoration: none;
}


/* =========================
   MAIN AUTH LAYOUT
========================= */

.auth-wrapper {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 52% 48%;
}


/* =========================
   LEFT SIDE
========================= */

.auth-image {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
    background: linear-gradient(90deg, rgba(67, 21, 47, .85), rgba(67, 21, 47, .25)), url("../products/organza.webp");
    background-size: contain;
    background-position: center;
}

.auth-image-content {
    position: absolute;
    inset: 0;

    padding: 60px;

    display: flex;
    flex-direction: column;
    justify-content: center;

    color: #fff;
}


/* LOGO */

.auth-logo {
    position: absolute;
    top: 45px;
    left: 60px;

    display: flex;
    align-items: center;
    gap: 12px;

    color: #fff;

    font-family: "Playfair Display", serif;
    font-size: 25px;
    font-weight: 700;
}

.logo-circle {
    width: 45px;
    height: 45px;

    border: 1px solid var(--gold);

    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    color: var(--gold);

    font-size: 22px;
}

.auth-logo small {
    display: block;

    font-family: "DM Sans", sans-serif;

    font-size: 8px;
    letter-spacing: 3px;

    color: var(--gold);
}


/* LEFT CONTENT */

.auth-eyebrow {
    color: var(--gold-light);

    font-size: 11px;
    font-weight: 700;

    letter-spacing: 3px;

    margin-bottom: 18px;
}

.auth-image-content h1 {
    font-family: "Playfair Display", serif;

    font-size: 65px;
    line-height: 1.05;

    margin-bottom: 22px;
}

.auth-image-content h1 em {
    color: var(--gold-light);
    font-style: italic;
}

.auth-image-content p {
    max-width: 500px;

    color: rgba(255, 255, 255, .85);

    line-height: 1.8;

    font-size: 15px;
}

.auth-bottom-text {
    position: absolute;

    bottom: 40px;
    left: 60px;

    color: rgba(255, 255, 255, .65);

    font-size: 11px;

    letter-spacing: 1px;
}


/* =========================
   RIGHT SIDE
========================= */

.auth-form-area {
    min-height: 100vh;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 50px 30px;

    background:
        radial-gradient(circle at top right,
            rgba(198, 161, 91, .12),
            transparent 35%),
        linear-gradient(135deg,
            #fffdfb,
            #fbf0f3);
}


/* CARD */

.auth-card {
    width: 100%;
    max-width: 550px;

    background: rgba(255, 255, 255, .95);

    border: 1px solid var(--border);

    padding: 45px;

    box-shadow:
        0 25px 70px rgba(67, 21, 47, .12);
}


/* HEADING */

.auth-heading {
    text-align: center;

    margin-bottom: 30px;
}

.auth-heading .auth-eyebrow {
    color: var(--gold);

    font-size: 10px;

    margin-bottom: 8px;
}

.auth-heading h2 {
    font-family: "Playfair Display", serif;

    font-size: 38px;

    color: var(--wine-dark);

    margin-bottom: 8px;
}

.auth-heading p {
    color: var(--muted);

    font-size: 14px;
}


/* FORM */

.form-group {
    margin-bottom: 7px;
}

.form-group label {
    display: block;
    font-size: 10pt;
    font-weight: 600;
    margin-bottom: 0px;
}

.form-control {
    width: 100%;

    height: 48px;

    padding: 0 14px;

    border: 1px solid var(--border);

    background: #fff;

    outline: none;

    font-family: "DM Sans", sans-serif;

    font-size: 11pt;

    transition: .3s;
}

.form-control:focus {
    border-color: var(--gold);

    box-shadow:
        0 0 0 3px rgba(198, 161, 91, .12);
}


/* PASSWORD */

.password-box {
    position: relative;
}

.password-box .form-control {
    padding-right: 65px;
}

.show-password {
    position: absolute;

    right: 12px;
    top: 50%;

    transform: translateY(-50%);

    border: 0;

    background: transparent;

    color: var(--wine);

    font-size: 10px;

    font-weight: 700;

    cursor: pointer;
}


/* OPTIONS */

.form-options {
    display: flex;

    align-items: center;

    justify-content: space-between;

    margin-bottom: 22px;

    font-size: 10pt;

    color: var(--muted);
}

.form-options label {
    display: flex;

    align-items: center;

    gap: 6px;
}

.form-options input {
    accent-color: var(--wine);
}

.form-options a {
    color: var(--wine);

    font-weight: 700;
}


/* BUTTON */

.btn-auth {
    width: 100%;

    height: 50px;

    border: 0;

    background: var(--wine);

    color: #fff;

    font-family: "DM Sans", sans-serif;

    font-size: 12px;

    font-weight: 700;

    letter-spacing: 1px;

    cursor: pointer;

    transition: .3s;
}

.btn-auth:hover {
    background: var(--wine-dark);

    transform: translateY(-2px);
}


/* DIVIDER */

.divider {
    display: flex;

    align-items: center;

    gap: 12px;

    margin: 25px 0;

    color: #a49a9f;

    font-size: 10px;

    text-transform: uppercase;

    letter-spacing: 1px;
}

.divider::before,
.divider::after {
    content: "";

    height: 1px;

    background: var(--border);

    flex: 1;
}


/* SWITCH */

.auth-switch {
    text-align: center;

    font-size: 11pt;

    color: var(--muted);
}

.auth-switch a {
    color: var(--wine);

    font-weight: 700;
}


/* TERMS */

.terms {
    font-size: 11px;

    color: var(--muted);

    line-height: 1.6;

    margin-bottom: 18px;
}

.terms a {
    color: var(--wine);
}


/* =========================
   WELCOME PAGE
========================= */

.welcome-card {
    text-align: center;
}

.success-icon {
    width: 80px;
    height: 80px;

    margin: 0 auto 25px;

    border-radius: 50%;

    border: 1px solid var(--gold);

    display: flex;

    align-items: center;
    justify-content: center;

    color: var(--gold);

    font-family: "Playfair Display", serif;

    font-size: 34px;
}

.welcome-card h2 {
    font-family: "Playfair Display", serif;

    font-size: 42px;

    color: var(--wine-dark);

    margin-bottom: 15px;
}

.welcome-card h2 span {
    color: var(--wine);
}

.welcome-card p {
    color: var(--muted);

    font-size: 14px;

    line-height: 1.8;
}


/* WELCOME BUTTONS */

.welcome-buttons {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 10px;

    margin-top: 28px;
}

.btn-outline {
    height: 48px;

    display: flex;

    align-items: center;

    justify-content: center;

    border: 1px solid var(--wine);

    color: var(--wine);

    font-size: 11px;

    font-weight: 700;

    letter-spacing: .5px;

    transition: .3s;
}

.btn-outline:hover {
    background: var(--wine);

    color: #fff;
}


/* =========================
   MOBILE
========================= */

@media(max-width: 900px) {

    .auth-wrapper {
        grid-template-columns: 1fr;
    }

    .auth-image {
        min-height: 360px;
    }

    .auth-image-content {
        min-height: 360px;

        padding: 35px;
    }

    .auth-logo {
        top: 30px;
        left: 35px;
    }

    .auth-image-content h1 {
        font-size: 45px;
    }

    .auth-image-content p {
        display: none;
    }

    .auth-bottom-text {
        left: 35px;
        bottom: 25px;
    }

    .auth-form-area {
        min-height: auto;

        padding: 40px 20px;
    }
}


@media(max-width: 500px) {

    .auth-image {
        min-height: 125px;
    }

    .auth-image-content {
        min-height: 300px;
    }

    .auth-image-content h1 {
        font-size: 36px;
    }

    .auth-logo {
        left: 25px;
    }

    .auth-card {
        padding: 30px 20px;
    }

    .auth-heading h2 {
        font-size: 32px;
    }

    .welcome-card h2 {
        font-size: 34px;
    }

    .welcome-buttons {
        grid-template-columns: 1fr;
    }
}