  .form-group {
        position: relative;
        margin-bottom: 1.5rem;
    }
    .form-group label {
        position: absolute;
        top: 10px;
        left: 15px;
        font-size: 16px;
        color: #6c757d;
        background-color: #ffffff;
        padding: 0 5px;
        transition: all 0.2s ease;
    }
    .form-group input:focus + label,
    .form-group input:not(:placeholder-shown) + label {
        top: -10px;
        left: 10px;
        font-size: 12px;
        color: #1365ab;
    }
    .form-group input {
        width: 100%;
        padding: 15px;
        border: 1px solid #ced4da;
        border-radius: 8px;
        transition: border-color 0.2s ease;
    }
    .form-group input:focus {
        border-color: #012e8f;
    }
    .field_icon {
        position: absolute;
        right: 15px;
        top: 50%;
        transform: translateY(-50%);
        cursor: pointer;
        color: #1365ab;
    }
    .field_icon.fa-eye-slash {
        color: #012e8f;
    }

   .map-image {
    width: 100%;
    height: 100%;
    opacity: 0.9;
}

.custom-tooltip {
    position: absolute;
    display: none;
    background: rgba(0, 0, 0, 0.7);
    color: #fff;
    padding: 5px;
    border-radius: 5px;
    font-size: 12px;
    z-index: 1000;
}
.login-background{
    background-color: #EFF3F9;
}