
      body {
    margin: 0;
    padding: 0;
    font-family: 'Arial', sans-serif;
}

.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;
}

.forgot-title {
    font-size: 1.8rem;
    font-weight: bold;
    text-align: center;
    margin-bottom: 1rem;
}

.forgot-subtitle {
    text-align: center;
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 2rem;
    line-height: 1.5;
}

.form-label {
    font-size: 0.9rem;
    font-weight: 400;
    color: #000;
    margin-bottom: 0.5rem;
}

.form-control {
    height: 3rem;
    border-radius: 0.375rem;
    border: 1px solid #ddd;
    padding: 0.75rem 1rem;
}

.form-control:focus {
    border-color: #d4af37;
    box-shadow: 0 0 0 0.2rem rgba(212, 175, 55, 0.15);
}

/* Error styling */
.form-control.is-invalid {
    border-color: #dc3545;
}

.text-danger.text-sm {
    font-size: 0.875rem;
}

.verify-btn {
    background-color: #000000;
    border: none;
    height: 3rem;
    font-size: 0.95rem;
    margin-top: 1rem;
}

.verify-btn:hover {
    background-color: #a47f5f;
}

.back-link {
    text-align: center;
    font-size: 0.875rem;
    color: #171614;
}

.back-link a {
    color: #007bff;
    text-decoration: none;
}

.back-link a:hover {
    text-decoration: underline;
}

.brand-footer {
    font-style: italic;
    position: absolute;
    bottom: 1rem;
    right: 1rem;  
    font-weight: bold;
    color: #000;
}

@media (min-width:992px) {
    .container{
        max-width: 1150px;
    }
}

@media (max-width: 992px) {
    .brand-footer {
        position: static;  
        text-align: center;
        margin-top: 1.5rem;
    }
   
    .forgot-title {
        font-size: 1.5rem;
    }
}

@media (max-width: 767px) {
    .form-container {
        max-width: 100%;
    }
   
    .row .col {
        margin-bottom: 0.5rem;
    }
    
    .forgot-subtitle {
        font-size: 0.85rem;
    }
}
    