input:-webkit-autofill,
input:-webkit-autofill:hover, 
input:-webkit-autofill:focus {
    -webkit-text-fill-color: rgb(34, 34, 34); 
    -webkit-box-shadow: 0 0 0px 1000px white inset; 
    transition: background-color 5000s ease-in-out 0s; 
}


@font-face {
    font-family: 'PoppinsLocal';
    src: url('../content/fonts/poppins_local/Poppins-Medium.woff2') format('woff2'),
        url('../content/fonts/poppins_local/Poppins-Medium.woff') format('woff');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'PoppinsLocal';
    src: url('../content/fonts/poppins_local/Poppins-MediumItalic.woff2') format('woff2'),
        url('../content/fonts/poppins_local/Poppins-MediumItalic.woff') format('woff');
    font-weight: 500;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'PoppinsLocal';
    src: url('../content/fonts/poppins_local/Poppins-Italic.woff2') format('woff2'),
        url('../content/fonts/poppins_local/Poppins-Italic.woff') format('woff');
    font-weight: normal;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'PoppinsLocal';
    src: url('../content/fonts/poppins_local/Poppins-Regular.woff2') format('woff2'),
        url('../content/fonts/poppins_local/Poppins-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}


/* 1. Define the Regular font */
@font-face {
    font-family: 'STIXTwoText';
    src: url('../content/fonts/stix_two_text_local/STIXTwoText-Regular.woff2') format('woff2'),
         url('../content/fonts/stix_two_text_local/STIXTwoText-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

/* 2. Define the Italic font */
@font-face {
    font-family: 'STIXTwoText';
    src: url('../content/fonts/stix_two_text_local/STIXTwoText-Italic.woff2') format('woff2'),
         url('../content/fonts/stix_two_text_local/STIXTwoText-Italic.woff') format('woff');
    font-weight: normal;
    font-style: italic;
    font-display: swap;
}

/* Base styles and colors */
a,
a:visited,
a:link {
    /*color: rgb(34, 34, 34);*/
    color: #642920;
}

body, html {
    margin: 0;
    padding: 0;
    height: 100%;
    font-family: STIXTwoText, sans-serif;
    background-color: white;
    color: rgb(34, 34, 34);
}

.page-wrapper {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* Header updated for centered logo */
.header-container {
    /*height: 160px;*/
    background-color: white;
    border-bottom: 1px solid #eeeeee;
    display: grid;
    /* This creates three equal columns to keep the logo dead-center */
    grid-template-columns: 1fr auto 1fr; 
    align-items: center;
    padding: 7px 50px;
    box-sizing: border-box;
    flex-shrink: 0;
}

.logo-container {
    grid-column: 2; /* Forces logo into the middle column */
}

.header-user .logo-container {
    grid-column: 1;
}

.logo-image {
    max-height: 78px; /* Adjust this to fit nicely within 160px */
    display: block;
}

.nav-menu {
    grid-column: 3; /* Forces menu to the right column */
    display: flex;
    justify-content: flex-end;
    font-family: PoppinsLocal, sans-serif;
}

.nav-menu ul {
    list-style: none;
    display: flex;
    gap: 20px;
    margin: 0;
    padding: 0;
}

.nav-menu a {
    color: rgb(34, 34, 34);
    text-decoration: none;
    text-transform: uppercase;
    font-size:14px;
    letter-spacing: 2.5px;
}

.nav-menu a:hover {
    text-decoration: underline;
}

/* Main content area */
.main-content {
    flex-grow: 1;
    padding: 30px 20px 30px;
    background-color: white;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    box-sizing: border-box;
}

h1 {
    margin-top: 0;
    font-size: 38px;
    font-weight: 400;
}

p{
    color: rgb(77,77,77);
    font-size: 20px;
}



/* Style for the form container */
.registration-form {
    margin-top: 20px;
}

/* Base styles for the form groups (container for each label/input pair) */
.form-group {
    margin-bottom: 25px; /* Adds space between fields */
}

/* Style for the LABELS  */
.registration-form label {
    font-family: PoppinsLocal;
    display: block; 
    font-size: 14px; 
    font-weight: 400;
    text-transform: uppercase; 
    letter-spacing: 2.5px; 
    color: rgb(34, 34, 34); 
    margin-bottom: 10px; 
    opacity: 0.8; 
}

/* Style for the INPUTS SELECT  */
.registration-form input, .registration-form select {
    font-family: PoppinsLocal;
    width: 100%; 
    box-sizing: border-box; 
    height: 50px; 
    padding: 0 20px; 
    
    border: 1px solid #dfdfdf; 
    border-radius: 30px; 
    
    background-color: transparent; 
    font-size: 16px; 
    color: rgb(31, 33, 36);
    outline: none; 
    transition: border-color 0.2s; 
}

.registration-form input:hover,
.registration-form select:hover,
.registration-form textarea:hover {
    border: 2px solid #bbbbbb; 
}

.registration-form input:focus,
.registration-form select:focus,
.registration-form textarea:focus {
    border: 3px solid #642920;
}

.registration-form select {
    /* 1. Remove the default browser arrow */
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;

    /* 2. Add extra padding on the right to create space for your new arrow */
    padding-right: 40px !important; 

    /* 3. Add a custom arrow as a background image */
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23222222' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    
    /* 4. Position the arrow exactly where you want it (e.g., 20px from the right) */
    background-position: calc(100% - 20px) center; 
    background-size: 12px;
}


.flex-row {
    display: flex;
    gap: 20px; 
}


.field-half {
    flex: 1;
}


.field-half input {
    width: 100%;
}



.footer-container {
    background-color: #f9f9f9;
    padding: 50px 20px;
    margin-top: 25px;
    color: rgb(34, 34, 34);
    text-align: center;
}

.footer-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.footer-brand p {
    margin: 4px 0;
    font-family: PoppinsLocal, sans-serif;
    font-size: 12px;
    text-align: right;
    color: rgb(100, 100, 100);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.footer-logo img {
    max-width: 120px;
    width: 100%;
}

.registration-form button {
    background-color: #642920;
    color: #F2EDE4;
    border: none;
    height: 50px;
    padding: 0 55px;
    border-radius: 25px;
    font-family: PoppinsLocal, sans-serif;
    font-size: 13px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.registration-form button:hover {
    background-color: #4a1d14;
}

/*.registration-form button {
    background-color: white; 
    color: rgb(34, 34, 34);
    border: 1px solid rgb(34, 34, 34); 
    
    
    height: 50px;
    padding: 0 60px; 
    border-radius: 25px;
    
    
    font-size: 13px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
    
    cursor: pointer;
    transition: all 0.3s ease; 
    display: block; 
}

.registration-form button:hover {
    background-color: rgb(34, 34, 34); 
    color: white; 
    border-color: rgb(34, 34, 34); 
}*/

.text-info{
    font-family: PoppinsLocal;
    font-size: 14px; 
    font-weight: 400;
    text-transform: uppercase; 
}





.login-image-container {
    width: 100%;
    height: 100%; 
    display: flex;
}

.login-welcome-img {
    background-image: url('../content/img/loginWelcome.jpg');
    background-size: cover;
    background-position: center;
    border-radius: 12px;
}

.field-half label {
    display: block;
    margin-bottom: 20px;
}

.input-570{
    max-width: 575px;
}

.hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 18px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
}

.hamburger span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: rgb(34, 34, 34);
}

@media (max-width: 1275px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: relative;
    }

    #nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 40px;
        right: 0;
        background-color: white;
        border: 1px solid #eeeeee;
        border-radius: 12px;
        padding: 20px;
        gap: 16px;
        min-width: 180px;
        z-index: 100;
    }

    #nav-links.open {
        display: flex;
    }

    #nav-links li {
        text-align: right;
    }
}

.login-form {
    display: flex;
    gap: 40px;
}

.login-col-left,
.login-col-right {
    flex: 1;
}

@media (max-width: 600px) {
    .login-form {
        display: block;
    }
    .login-col-right {
        display: none;
    }
}


select{
    cursor:pointer;
}


/* Overlay covering the full screen */
.modal-overlay {
    display: none; /* Hidden by default */
    position: fixed;
    z-index: 9999;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(5px); /* Modern blur effect */
}

/* The Modal Box */
.modal-content {
    position: relative;
    background-color: #fff;
    margin: 10% auto;
    padding: 40px;
    width: 90%;
    max-width: 500px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    animation: modalSlide 0.3s ease-out;
}

/* Close Button (X) */
.modal-close {
    position: absolute;
    top: 20px;
    right: 25px;
    font-size: 28px;
    cursor: pointer;
    color: #888;
}

/* Modal Button (matches your Register button style) */
.modal-btn {
    margin-top: 25px;
    padding: 12px 40px;
    border: 1px solid #222;
    background: transparent;
    border-radius: 25px;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: 0.3s;
}

.modal-btn:hover {
    background: #222;
    color: #fff;
}

/* Animation for the "pop" effect */
@keyframes modalSlide {
    from { transform: translateY(-50px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}


/* ── Entry form additions ───────────────────────── */

.registration-form textarea {
    font-family: STIXTwoText, sans-serif;
    width: 100%;
    box-sizing: border-box;
    min-height: 120px;
    padding: 15px 20px;
    border: 1px solid #dfdfdf;
    border-radius: 16px;
    background-color: transparent;
    font-size: 16px;
    color: rgb(31, 33, 36);
    outline: none;
    transition: border-color 0.2s;
    resize: vertical;
}

.registration-form textarea:hover,
.registration-form textarea:focus {
    /*border-color: #bbbbbb;*/
}

.registration-form input[type="file"] {
    height: auto;
    border: none;
    border-radius: 0;
    padding: 5px 0;
    font-size: 14px;
    font-family: PoppinsLocal, sans-serif;
}

.label-optional {
    color: #c09060;
    font-family: PoppinsLocal, sans-serif;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2.5px;
}

.entry-type-label {
    font-family: PoppinsLocal, sans-serif;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    color: #c09060;
    margin-top: -10px;
    margin-bottom: 30px;
}

.entry-actions-row {
    display: flex;
    align-items: center;
    gap: 25px;
}

.btn-cancel {
    font-family: PoppinsLocal, sans-serif;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: rgb(140, 140, 140);
    text-decoration: none;
}

.btn-cancel:hover {
    color: rgb(34, 34, 34);
    text-decoration: underline;
}

/* ── Entry overview ────────────────────────────── */

.entry-overview {
    margin-bottom: 40px;
    border: 1px solid #eeeeee;
    border-radius: 16px;
    overflow: hidden;
}

.entry-overview-row {
    display: flex;
    align-items: baseline;
    padding: 14px 24px;
    border-bottom: 1px solid #eeeeee;
}

.entry-overview-row:last-child {
    border-bottom: none;
}

.entry-overview-row:nth-child(even) {
    background-color: #fafafa;
}

.entry-overview-label {
    font-family: PoppinsLocal, sans-serif;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: rgb(140, 140, 140);
    min-width: 180px;
    flex-shrink: 0;
}

.entry-overview-value {
    font-family: STIXTwoText, sans-serif;
    font-size: 17px;
    color: rgb(34, 34, 34);
}

.entry-overview-description {
    font-size: 15px;
    line-height: 1.7;
    color: rgb(77, 77, 77);
}

/* ── Upload section ────────────────────────────── */

.upload-saved-msg {
    font-family: PoppinsLocal, sans-serif;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #6a9a6a;
    margin-bottom: 30px;
}

.btn-done {
    display: inline-flex;
    align-items: center;
    height: 50px;
    padding: 0 60px;
    border: 1px solid rgb(34, 34, 34);
    border-radius: 25px;
    background-color: white;
    color: rgb(34, 34, 34);
    font-family: PoppinsLocal, sans-serif;
    font-size: 13px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-done:hover {
    background-color: rgb(34, 34, 34);
    color: white;
}

/* ── Dropzone overrides ─────────────────────────── */

.gst-dropzone {
    border: 1px dashed #dfdfdf;
    border-radius: 16px;
    background: transparent;
    min-height: 100px;
    padding: 10px;
    transition: border-color 0.2s;
    cursor: pointer;
}

.gst-dropzone:hover,
.gst-dropzone.dz-drag-hover {
    border-color: #bbbbbb;
}

.gst-dropzone .dz-message {
    /*font-family: PoppinsLocal, sans-serif;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: rgb(160, 160, 160);
    margin: 20px 0;*/
}

.gst-dropzone .dz-message:hover {
    font-family: PoppinsLocal, sans-serif;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #642920;
    margin: 20px 0;
}



.gst-dropzone .dz-message .dz-browse {
    text-decoration: underline;
    cursor: pointer;
}

.gst-dropzone .dz-preview {
    display: inline-block;
    vertical-align: top;
    margin: 8px;
    position: relative;
}

.gst-dropzone .dz-preview .dz-image {
    width: 100px;
    height: 100px;
    border-radius: 8px;
    overflow: hidden;
    background: #f5f5f5;
}

.gst-dropzone .dz-preview .dz-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.gst-dropzone .dz-preview .dz-details {
    padding: 4px 0;
    opacity: 1;
    background: transparent;
}

.gst-dropzone .dz-preview .dz-size,
.gst-dropzone .dz-preview .dz-filename {
    font-family: PoppinsLocal, sans-serif;
    font-size: 10px;
    color: rgb(120, 120, 120);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    max-width: 100px;
    text-align: center;
}

/* Hide the animated success/error mark circles entirely */
.gst-dropzone .dz-success-mark,
.gst-dropzone .dz-error-mark {
    /*display: none !important;*/
}

.gst-dropzone .dz-remove {
    display: block;
    text-align: center;
    margin-top: 4px;
    font-family: PoppinsLocal, sans-serif;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgb(140, 140, 140) !important;
    text-decoration: none !important;
}

.gst-dropzone .dz-remove:hover {
    color: #C0392B !important;
}

.gst-dropzone .dz-progress {
    /*display: none;*/
}

.form-fine-print {
    font-family: PoppinsLocal, sans-serif;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: rgb(120, 120, 120);
    margin-top: 15px;
}

label.error {
    color: #C0392B;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 8px;
    display: block;
    font-weight: 500;
}

/* Optional: Subtle red border on the input itself when invalid */
input.error, select.error {
    border: 1px solid #C0392B !important;
}


/* The container for the input and the toggle */
.input-wrapper {
    position: relative;
    width: 100%;
}

/* Ensure the input has space for the text on the right */
.input-wrapper input {
    width: 100%;
    padding-right: 60px !important; /* Creates a "dead zone" so text doesn't overlap SHOW */
    box-sizing: border-box;
}

/* Position the "SHOW" text inside the input */
.password-toggle {
    position: absolute;
    right: 20px; /* Distance from the right edge */
    top: 50%;
    transform: translateY(-50%); /* Perfectly centers it vertically */
    
    font-size: 10px;
    font-weight: 700;
    color: #642920;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
    user-select: none;
    z-index: 10;
    
    /* Optional: make it look like a tiny subtle button */
    padding: 5px;
}

.password-toggle:hover {
    color: #4a1d14;
}


/* ── Index page ─────────────────────────────────── */

.intro-text {
    /*max-width: 750px;*/
}

.competitions-section {
    margin-top: 10px;
}

.empty-state {
    margin-top: 40px;
}

.empty-state-text {
    font-size: 17px;
    color: rgb(120, 120, 120);
    font-style: italic;
}

.section-label {
    font-size: 15px;
    color: rgb(77, 77, 77);
    margin-bottom: 6px;
    margin-top:25px;
}

.award-title-row {
    font-size: 18px;
    margin-bottom: 6px;
}

.section-sublabel {
    font-size: 15px;
    color: rgb(77, 77, 77);
    margin-top: 4px;
}

.disciplines-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 28px;
    width: 75%;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 685px) {
    .disciplines-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 1125px) {
    .disciplines-grid {
        width: 100%;
    }
}

.discipline-card img {
    max-width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
}

.discipline-card {
    background-color: #ede8dc;
    border-radius: 16px;
    /*padding: 30px 32px;*/
    text-decoration: none;
    color: rgb(34, 34, 34);
    display: flex;
    flex-direction: column;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.discipline-card:hover {
    transform: scale(1.03);
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.10);
}

.discipline-card-title {
    font-variant: small-caps;
    font-size: 21px;
    font-weight: 700;
    margin: 0 0 18px 0;
    color: rgb(34, 34, 34);
}

.discipline-card-desc {
    font-size: 15px;
    color: rgb(90, 85, 78);
    flex-grow: 1;
    margin: 0;
    line-height: 1.6;
}

.discipline-card-price {
    font-size: 30px;
    color: rgb(34, 34, 34);
    margin: 30px 0 0 0;
}

.entries-section {
    margin-top: 25px;
}

.entries-heading {
    font-size: 26px;
    font-weight: 700;
    margin-top: 0;
    margin-bottom: 20px;
}

.entries-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 15px;
}

.entries-table thead tr {
    background-color: rgb(34, 34, 34);
    color: white;
}

.entries-table thead th {
    padding: 12px 14px;
    text-align: left;
    font-family: PoppinsLocal, sans-serif;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.entries-table tbody tr {
    border-bottom: 1px solid #eeeeee;
}

.entries-table tbody tr:hover {
    background-color: #fafafa;
}

.entries-table tbody td {
    padding: 14px;
    vertical-align: middle;
    color: rgb(55, 55, 55);
}

.entry-id {
    font-size: 13px;
    color: rgb(140, 140, 140) !important;
}

.entry-title strong {
    font-weight: 700;
}

.entry-actions a {
    margin-right: 10px;
    font-size: 14px;
    text-decoration: underline;
}

.pay-btn {
    display: inline-block;
    padding: 7px 16px;
    background-color: #e0e0e0;
    color: rgb(34, 34, 34) !important;
    border-radius: 4px;
    text-decoration: none !important;
    font-size: 13px;
    font-family: PoppinsLocal, sans-serif;
    white-space: nowrap;
}

.pay-btn:hover {
    background-color: #cccccc;
}

.page-title-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 0;
}

.page-title-row h1 {
    margin-bottom: 0;
}

.btn-edit-details {
    flex-shrink: 0;
    font-family: PoppinsLocal, sans-serif;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: rgb(140, 140, 140);
    text-decoration: none;
    border: 1px solid #dddddd;
    border-radius: 25px;
    padding: 8px 20px;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.btn-edit-details:hover {
    color: rgb(34, 34, 34);
    border-color: rgb(34, 34, 34);
}


/* ── Preview gallery ────────────────────────────── */

.preview-gallery-section {
    margin-bottom: 10px;
}

.preview-gallery-label {
    font-family: PoppinsLocal, sans-serif;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: rgb(140, 140, 140);
    margin-top: 30px;
    margin-bottom: 14px;
}

.preview-gallery {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.gallery-thumb {
    display: block;
    border-radius: 10px;
    overflow: hidden;
    background: #f5f5f5;
    cursor: zoom-in;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    text-decoration: none;
    flex-shrink: 0;
}

.gallery-thumb:hover {
    transform: scale(1.02);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.10);
}

.gallery-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.gallery-thumb--logo {
    width: 160px;
    height: 160px;
}

.preview-gallery--property .gallery-thumb {
    width: 160px;
    height: 160px;
}

.preview-no-images {
    font-family: PoppinsLocal, sans-serif;
    font-size: 14px;
    color: rgb(140, 140, 140);
    margin-bottom: 30px;
}

@media (max-width: 480px) {
    .gallery-thumb--logo,
    .preview-gallery--property .gallery-thumb {
        width: 130px;
        height: 130px;
    }
}


/* ── Step progress bar ──────────────────────────── */

.step-progress {
    display: flex;
    align-items: flex-start;
    width: 100%;
    margin-bottom: 40px;
}

.step-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex-shrink: 0;
}

.step-circle {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 1.5px solid #cccccc;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: PoppinsLocal, sans-serif;
    font-size: 15px;
    font-weight: 500;
    color: #b0b0b0;
    background-color: white;
    box-sizing: border-box;
    transition: all 0.3s ease;
}

.step-item.active .step-circle {
    background-color: #c09060;
    border-color: #c09060;
    color: white;
}

.step-item.done .step-circle {
    border-color: #c09060;
    color: #c09060;
    background-color: white;
}

.step-label {
    margin-top: 10px;
    font-family: PoppinsLocal, sans-serif;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #b0b0b0;
    white-space: nowrap;
    text-align: center;
}

.step-item.active .step-label {
    color: #c09060;
}

.step-item.done .step-label {
    color: rgb(100, 100, 100);
}

.step-connector {
    flex: 1;
    height: 1px;
    background-color: #e8e8e8;
    margin-top: 21px;
    min-width: 20px;
}

.step-connector.done {
    background-color: #c09060;
    opacity: 0.4;
}

@media (max-width: 480px) {
    .step-label {
        display: none;
    }
}

label.required::after {
    content: "*";
    color: #642920;
}