body {
    margin: 0;
    padding: 0;
    font-family: 'Arial', sans-serif;
}
/* .left-bg {
   
    position: relative;
    overflow: hidden;
} */
.left-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: repeating-linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.1),
        rgba(255, 255, 255, 0.1) 2px,
        transparent 2px,
        transparent 20px
    );
    opacity: 0.5;
}
.form-container {
    max-width: 100%;
    width: 100%;
}
.brand-small {
    font-family: 'Cinzel', serif;
    color: #d4af37;
    font-size: 1rem;
    margin-bottom: 1rem;
    text-align: center;
    font-style: italic;
}
.signup-title {
    font-size: 1.8rem;
    font-weight: bold;
    text-align: center;
    margin-bottom: 1.5rem;
}
.google-btn {
    border-color: #ddd;
    color: #333;
    font-weight: normal;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50% !important;
    margin-left: auto;
    margin-right: auto;
    display: flex;
}
.google-btn:hover{
    background-color: #dc3545;
    color: white;
    border: none;
}

.google-icon {
    width: 20px;
    height: 20px;
}
.or-divider {
    text-align: center;
    color: #000000;
    font-size: 1rem;
    font-weight: 700;
}
.form-control {
    height: 3rem;
    border-radius: 0.375rem;
}
.password-toggle {
    cursor: pointer;
    font-size: 1.2rem;
    color: #6b7280;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem;
    min-width: 3rem;
    background: transparent;
    border: none;
    outline: none;
}
.password-toggle:hover {
    color: #374151;
    background: transparent;
    border: none;
}
.password-toggle:focus {
    box-shadow: none;
    background: transparent;
    border: none;
}
/* Error styling */
.form-control.is-invalid {
    border-color: #dc3545;
}
.text-danger.text-sm {
    font-size: 0.875rem;
}


.create-btn {
    background-color: #000000;
    border: none;
    height: 3rem;
}
.create-btn:hover {
    background-color: #a47f5f;
}
.login-link {
    text-align: center;
    font-size: 0.875rem;
    color: #171614;
}
.login-link a {
    color: #007bff;
    text-decoration: none;
}
.login-link a:hover {
    text-decoration: underline;
}
.brand-footer {
    font-style: italic;
    position: absolute;
    bottom: 1rem;
    right: 1rem;  
    font-weight: bold;
    color: #000;
}
@media (max-width: 992px) {
    .brand-footer {
        position: static;  
        text-align: center;
        margin-top: 1.5rem;
    }
   
    .signup-title {
        font-size: 1.5rem;
    }
}
@media (max-width: 767px) {
    .form-container {
        max-width: 100%;
    }
   
    .row .col {
        margin-bottom: 0.5rem;
    }
}


/* * Breadcrumb container positioning */ 
.breadcrumb-nav {
    position: absolute;
    top: 20px;
    left: 20px;
    z-index: 10;
}

/* Remove default Bootstrap breadcrumb divider */
.breadcrumb {
    margin: 0;
    padding: 0;
    background: transparent;
}

/* Style for the "Go back" link */
.breadcrumb-back {
    color: #333;
    font-weight: 500;
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.2s ease;
}

/* Hover effect */
.breadcrumb-back:hover {
    text-decoration: underline;
    color: #a47f5f;
}


/* Button disabled state */
.create-btn:disabled {
    cursor: not-allowed !important;
    opacity: 0.7 !important;
    background-color: #666 !important;
}

/* Bootstrap spinner (if not already included) */
.spinner-border {
    display: inline-block;
    width: 1rem;
    height: 1rem;
    vertical-align: text-bottom;
    border: 0.15em solid currentColor;
    border-right-color: transparent;
    border-radius: 50%;
    animation: spinner-border 0.75s linear infinite;
}

.spinner-border-sm {
    width: 0.875rem;
    height: 0.875rem;
    border-width: 0.125em;
}

@keyframes spinner-border {
    to {
        transform: rotate(360deg);
    }
}

/* Prevent text selection on disabled buttons */
button[disabled] {
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}