/* Styles for the Home Banner Area */
.home_banner_area {
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5));
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
}
.banner_content {
    color: #fff;
    text-align: center;
    padding: 40px 20px;
    border-radius: 16px;
    background: rgba(0,0,0,0.3);
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
}
.banner_content h1 {
    font-size: 4rem;
    font-weight: 700;
    letter-spacing: 2px;
}
.banner_content h3 {
    font-size: 2rem;
    font-weight: 400;
    margin-bottom: 1rem;
}
.banner_content .btn-primary {
    margin-top: 2rem;
    font-size: 1.2rem;
    padding: 0.75rem 2rem;
    border-radius: 30px;
    box-shadow: 0 4px 14px rgba(0,0,0,0.2);
} 

.section_gap {
    padding: 150px 0; }
    @media (max-width: 1199px) {
      .section_gap {
        padding: 80px 0; } }
  
  .section_gap_top {
    padding-top: 200px; }
    @media (max-width: 1199px) {
      .section_gap_top {
        padding-top: 80px; } }
  
  .section_gap_bottom {
    padding-bottom: 200px; }
    @media (max-width: 1199px) {
      .section_gap_bottom {
        padding-bottom: 80px; } }

/* Password Toggle Button Styles */
.password-input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    white-space: nowrap;
}

.password-input-wrapper .form-control {
    padding-right: 45px;
}

.password-toggle-btn {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: #6c757d;
    cursor: pointer;
    padding: 0;
    font-size: 16px;
    z-index: 10;
    transition: color 0.3s ease;
    outline: none;
    box-shadow: none;
    display: block;
    width: 30px;
    height: 30px;
    text-decoration: none;
    white-space: nowrap;
    line-height: 30px;
    text-align: center;
}

.password-toggle-btn:hover {
    color: #495057;
    text-decoration: none;
}

.password-toggle-btn:focus {
    outline: none;
    color: #007bff;
    box-shadow: none;
    border: none;
    text-decoration: none;
}

.password-toggle-btn:active {
    outline: none;
    box-shadow: none;
    border: none;
    text-decoration: none;
}

.password-toggle-btn:focus-visible {
    outline: 2px solid #007bff;
    outline-offset: 2px;
}

.password-toggle-btn i {
    font-size: 16px;
    display: inline-block;
    line-height: 1;
    vertical-align: middle;
}